File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 2020 node-version-file : package.json
2121
2222 # 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 --frozen-lockfile
23+ - run : SENTRYCLI_SKIP_DOWNLOAD=1 npm install
2424
25- - run : yarn check:types
25+ - run : npm run check:types
2626
2727 test_node :
2828 strategy :
@@ -42,13 +42,10 @@ jobs:
4242 node-version : ${{ matrix.node-version }}
4343
4444 # We need to skip the fallback download because downloading will fail on release branches because the new version isn't available yet.
45- - run : SENTRYCLI_SKIP_DOWNLOAD=1 yarn install --frozen-lockfile
46- if : matrix.node-version != '10.x' && matrix.node-version != '12.x'
45+ - run : SENTRYCLI_SKIP_DOWNLOAD=1 npm install
4746
4847 # older node versions need an older nft
49- - run : |
50- SENTRYCLI_SKIP_DOWNLOAD=1 yarn install --ignore-engines --frozen-lockfile
51- SENTRYCLI_SKIP_DOWNLOAD=1 yarn add @vercel/nft@0.22.1 --ignore-engines
48+ - run : SENTRYCLI_SKIP_DOWNLOAD=1 npm install @vercel/nft@0.22.1
5249 if : matrix.node-version == '10.x' || matrix.node-version == '12.x'
5350
54- - run : yarn test
51+ - run : npm test
You can’t perform that action at this time.
0 commit comments