We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a8ba3 commit 532d497Copy full SHA for 532d497
.github/workflows/ci.yml
@@ -87,10 +87,11 @@ jobs:
87
with:
88
node-version: ${{ matrix.node-version }}
89
90
- - 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.
91
+ - run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install
92
93
# older node versions need an older nft
- - run: npm install @vercel/[email protected]
94
+ - run: SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/[email protected]
95
if: matrix.node-version == '10.x' || matrix.node-version == '12.x'
96
97
- run: npm test
0 commit comments