diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index 259306e2..890c6e1a 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -46,27 +46,27 @@ jobs: - name: Verify Markdown if: ${{ steps.filter.outputs.md == 'true' }} - run: nps verify.md + run: npx nps verify.md - name: Verify JavaScript if: ${{ steps.filter.outputs.js == 'true' }} - run: nps verify.js + run: npx nps verify.js - name: Verify JSON if: ${{ steps.filter.outputs.json == 'true' }} - run: nps verify.json + run: npx nps verify.json - name: Verify TOML if: ${{ steps.filter.outputs.toml == 'true' }} - run: nps verify.toml + run: npx nps verify.toml - name: Verify TypeScript if: ${{ steps.filter.outputs.ts == 'true' }} - run: nps verify.ts + run: npx nps verify.ts - name: Verify YAML if: ${{ steps.filter.outputs.yaml == 'true' }} - run: nps verify.yaml + run: npx nps verify.yaml # Only run tests if the PR touches behavior-related files. - name: Test