From 6c8261a1617782dae82e5139a3694bbbef869e15 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Wed, 21 Sep 2022 15:26:29 -0700 Subject: [PATCH] fixup --- .github/workflows/build.yaml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 91c83b49b..bc60b71f6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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' diff --git a/package.json b/package.json index 3412def23..0a8bce3e7 100644 --- a/package.json +++ b/package.json @@ -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",