Archived
1
0
This commit is contained in:
Joe Previte 2022-09-21 15:26:29 -07:00
parent 97842c403d
commit 6c8261a161
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
2 changed files with 3 additions and 3 deletions

View File

@ -101,8 +101,8 @@ jobs:
uses: tj-actions/changed-files@v23.2
with:
files: |
*.sh
*.bats
**/*.sh
**/*.bats
- name: Install Node.js v16
if: steps.changed-files.outputs.any_changed == 'true'

View File

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