Skip to content

Commit

Permalink
fix(ci): use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Oct 1, 2024
1 parent 2fb8700 commit 5ee489c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jest-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:

- name: Jest With Coverage
run: |
bun install
bun run test
npm install
npm run test
- name: Add Jest Report to Summary
if: always()
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/knip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
node-version: 20.10.0

- name: Install toolchain
run: bun install
run: npm install

- name: Store PR number
run: echo ${{ github.event.number }} > pr-number.txt

- name: Run Knip
run: bun run knip --reporter json > knip-results.json || true
run: npm run knip --reporter json > knip-results.json || true

- name: Upload knip result
if: failure()
Expand Down

0 comments on commit 5ee489c

Please sign in to comment.