-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Skip fallback download in tests (#1878)
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
- run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/[email protected] | ||
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' | ||
|
||
- run: npm test |