Skip to content

Commit eaae55a

Browse files
committed
use yarn consistently
1 parent d071fa5 commit eaae55a

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/test_node.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
with:
2020
node-version-file: package.json
2121

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

2425
- run: yarn check:types
2526

@@ -41,10 +42,10 @@ jobs:
4142
node-version: ${{ matrix.node-version }}
4243

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

4647
# older node versions need an older nft
47-
- run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/nft@0.22.1
48+
- run: SENTRYCLI_SKIP_DOWNLOAD=1 yarn add @vercel/nft@0.22.1
4849
if: matrix.node-version == '10.x' || matrix.node-version == '12.x'
4950

50-
- run: npm test
51+
- run: yarn test

0 commit comments

Comments
 (0)