Skip to content

Commit 84c0a6d

Browse files
committed
ci: fix linux arm test command
1 parent 74ce337 commit 84c0a6d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,9 @@ jobs:
375375
image: ghcr.io/napi-rs/napi-rs/nodejs:aarch64-${{ matrix.node }}
376376
options: -v ${{ github.workspace }}:/skia -w /skia
377377
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
380381
ls -la
381382
382383
test-linux-aarch64-musl-binding:
@@ -457,8 +458,9 @@ jobs:
457458
image: ghcr.io/napi-rs/napi-rs/nodejs:armhf-${{ matrix.node }}
458459
options: -v ${{ github.workspace }}:/skia -w /skia
459460
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
462464
ls -la
463465
464466
publish:

0 commit comments

Comments
 (0)