Skip to content

Commit

Permalink
fix(ci): prefix all nps cmds to run w/ npx
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Lewis <[email protected]>
  • Loading branch information
DerekNonGeneric authored Sep 1, 2022
1 parent c6a3e85 commit 634f403
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 634f403

Please sign in to comment.