-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6589139
commit cf2f444
Showing
2 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
name: Typos | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
name: Codespell | ||
|
||
push: | ||
branches: | ||
- "master" | ||
jobs: | ||
codespell: | ||
runs-on: ubuntu-22.04 | ||
typos: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: codespell-project/actions-codespell@master | ||
with: | ||
check_filenames: true | ||
skip: "./.git/**,./flat-manager/dist/index.js,./flatpak-builder/dist/index.js,**/yarn.lock" | ||
builtin: "clear,rare,informal,usage,code" | ||
ignore_words_list: "master" # can't do much about it, flatpak uses it by default | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
- name: Check spelling | ||
uses: crate-ci/typos@master |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[files] | ||
extend-exclude = ["**/dist/index.js"] |