File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -375,8 +375,9 @@ jobs:
375
375
image : ghcr.io/napi-rs/napi-rs/nodejs:aarch64-${{ matrix.node }}
376
376
options : -v ${{ github.workspace }}:/skia -w /skia
377
377
run : |
378
- pnpm install --ignore-scripts && \
379
- npm test && \
378
+ yarn install --ignore-scripts --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000 && \
379
+ yarn build:ts && \
380
+ yarn test
380
381
ls -la
381
382
382
383
test-linux-aarch64-musl-binding :
@@ -457,8 +458,9 @@ jobs:
457
458
image : ghcr.io/napi-rs/napi-rs/nodejs:armhf-${{ matrix.node }}
458
459
options : -v ${{ github.workspace }}:/skia -w /skia
459
460
run : |
460
- pnpm install --ignore-scripts && \
461
- npm test && \
461
+ yarn install --ignore-scripts --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000 && \
462
+ yarn build:ts && \
463
+ yarn test
462
464
ls -la
463
465
464
466
publish :
You can’t perform that action at this time.
0 commit comments