@@ -175,7 +175,7 @@ jobs:
175
175
# run: ls -R .
176
176
# shell: bash
177
177
# - name: Test bindings
178
- # run: pnpm test
178
+ # run: npm test
179
179
test-linux-x64-gnu-binding :
180
180
name : Test bindings on Linux-x64-gnu - node@${{ matrix.node }}
181
181
needs :
@@ -209,7 +209,7 @@ jobs:
209
209
run : ls -R .
210
210
shell : bash
211
211
- name : Test bindings
212
- run : docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim pnpm test
212
+ run : docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim npm test
213
213
test-linux-x64-musl-binding :
214
214
name : Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
215
215
needs :
@@ -245,7 +245,7 @@ jobs:
245
245
run : ls -R .
246
246
shell : bash
247
247
- name : Test bindings
248
- run : docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine pnpm test
248
+ run : docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine npm test
249
249
test-linux-aarch64-gnu-binding :
250
250
name : Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
251
251
needs :
@@ -283,7 +283,7 @@ jobs:
283
283
options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
284
284
run : |
285
285
set -e
286
- pnpm test
286
+ npm test
287
287
ls -la
288
288
test-linux-aarch64-musl-binding :
289
289
name : Test bindings on aarch64-unknown-linux-musl - node@${{ matrix.node }}
@@ -317,7 +317,7 @@ jobs:
317
317
options : ' --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build'
318
318
run : |
319
319
set -e
320
- pnpm test
320
+ npm test
321
321
test-linux-arm-gnueabihf-binding :
322
322
name : Test bindings on armv7-unknown-linux-gnueabihf - node@${{ matrix.node }}
323
323
needs :
@@ -354,7 +354,7 @@ jobs:
354
354
options : ' --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build'
355
355
run : |
356
356
set -e
357
- pnpm test
357
+ npm test
358
358
ls -la
359
359
universal-macOS :
360
360
name : Build universal macOS binary
0 commit comments