Skip to content

Commit

Permalink
ci: Skip fallback download in tests (#1878)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst authored Dec 29, 2023
1 parent 59a8ba3 commit 532d497
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

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

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

- run: npm test

0 comments on commit 532d497

Please sign in to comment.