Skip to content

Commit 6c8261a

Browse files
committed
fixup
1 parent 97842c4 commit 6c8261a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ jobs:
101101
uses: tj-actions/changed-files@v23.2
102102
with:
103103
files: |
104-
*.sh
105-
*.bats
104+
**/*.sh
105+
**/*.bats
106106
107107
- name: Install Node.js v16
108108
if: steps.changed-files.outputs.any_changed == 'true'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"_audit": "./ci/dev/audit.sh",
2929
"fmt": "./ci/dev/fmt.sh",
3030
"lint:sh": "shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090,SC2002 $(git ls-files '*.sh' | grep -v 'lib/vscode')",
31-
"lint:ts": "eslint --max-warnings=0 --fix $(git ls-files '*.ts' '*.tsx' '*.js' | grep -v 'lib/vscode')",
31+
"lint:ts": "eslint --max-warnings=0 --fix $(git ls-files '*.ts' '*.js' | grep -v 'lib/vscode')",
3232
"test": "echo 'Run yarn test:unit or yarn test:e2e' && exit 1",
3333
"typecheck": "tsc -p tsconfig.json --noEmit --skipLibCheck",
3434
"ci": "./ci/dev/ci.sh",

0 commit comments

Comments
 (0)