fix: empty arrays for dupwords and misspell #74
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
pull_request: | |
jobs: | |
ci-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
# if one fails continues running the others | |
fail-fast: false | |
steps: | |
- name: checkout-action | |
uses: actions/[email protected] | |
- name: yamllint | |
uses: ibiqlik/action-yamllint@v3 | |
# uses: reviewdog/action-yamllint@v1 # failed to detect errors... | |
- name: vale-action | |
uses: errata-ai/[email protected] | |
- name: typos-action | |
# uses: crate-ci/[email protected] | |
uses: Shemnei/reviewdog-action-typos@v0 | |
- name: Codespell with annotations | |
# uses: codespell-project/[email protected] | |
uses: plettich/action-codespell@master | |
- name: markdownlint-cli2-action | |
# uses: DavidAnson/[email protected] | |
uses: reviewdog/action-markdownlint@v0 | |
- name: editorconfig-checker-action | |
uses: editorconfig-checker/action-editorconfig-checker@v2 |