Skip to content

Commit 532d497

Browse files
author
Luca Forstner
authored
ci: Skip fallback download in tests (#1878)
1 parent 59a8ba3 commit 532d497

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,11 @@ jobs:
8787
with:
8888
node-version: ${{ matrix.node-version }}
8989

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

9293
# older node versions need an older nft
93-
- run: npm install @vercel/[email protected]
94+
- run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/[email protected]
9495
if: matrix.node-version == '10.x' || matrix.node-version == '12.x'
9596

9697
- run: npm test

0 commit comments

Comments
 (0)