Skip to content

Commit

Permalink
fix: npm invocations
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney committed Mar 21, 2024
1 parent cbc495f commit 8c488a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm lint
- run: npm run lint
actions:
runs-on: ubuntu-latest
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm actions
- run: npm run actions
- run: |
git diff --name-only -- "actions/**/*.js" | xargs --no-run-if-empty git diff --exit-code -- \
|| (echo "Change to actions detected, please run 'npm run actions' and commit the changes" && false)
Expand All @@ -32,7 +32,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm workflows
- run: npm run workflows
- run: |
git diff --name-only -- ".github/workflows/*.yml" | xargs --no-run-if-empty git diff --exit-code -- \
|| (echo "Change to workflows detected, please run 'npm run workflows' and commit the changes" && false)
Expand All @@ -48,7 +48,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci-test
- run: npm run ci-test
check-title:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8c488a0

Please sign in to comment.