Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
det committed Mar 14, 2024
1 parent 7219935 commit 1a47b60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: trunk-io/trunk-action@v1
with:
# Run only on everything except the docs folder.
arguments: --ignore "docs/**"
arguments: --ignore 'docs/**'

- name: Check Rule Files
run: node Makefile checkRuleFiles
Expand All @@ -40,7 +40,7 @@ jobs:
uses: trunk-io/trunk-action@v1
with:
# Run only on the docs folder.
arguments: --ignore "**" --ignore "!docs/**"
arguments: --ignore '**' --ignore '!docs/**'

- name: Check Rule Examples
run: node Makefile checkRuleExamples
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"lint:docs:js": "trunk check --filter=eslint docs --force",
"lint:docs:rule-examples": "node Makefile.js checkRuleExamples",
"lint:fix": "trunk check -y --ignore 'docs/**'",
"lint:fix:docs:js": "trunk check -y --filter=eslint -ignore '**' -ignore '!docs/**'",
"lint:fix:docs:js": "trunk check -y --filter=eslint --ignore '**' --ignore '!docs/**'",
"release:generate:alpha": "node Makefile.js generatePrerelease -- alpha",
"release:generate:beta": "node Makefile.js generatePrerelease -- beta",
"release:generate:latest": "node Makefile.js generateRelease",
Expand Down

0 comments on commit 1a47b60

Please sign in to comment.