Skip to content

Commit b9fb73d

Browse files
committed
chore(ci): Use yarn for node tests instead of npm
1 parent d227ec6 commit b9fb73d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test_node.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
node-version: ${{ matrix.node-version }}
2727

2828
# We need to skip the fallback download because downloading will fail on release branches because the new version isn't available yet.
29-
- run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install
29+
- run: SENTRYCLI_SKIP_DOWNLOAD=1 yarn install
3030

3131
# older node versions need an older nft
32-
- run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/nft@0.22.1
32+
- run: SENTRYCLI_SKIP_DOWNLOAD=1 yarn add @vercel/nft@0.22.1
3333
if: matrix.node-version == '10.x' || matrix.node-version == '12.x'
3434

35-
- run: npm test
35+
- run: yarn test

0 commit comments

Comments
 (0)