Skip to content

Commit

Permalink
fix docker multiple command syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
volf52 committed Aug 1, 2024
1 parent bb30b74 commit 99fb52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim "corepack enable && yarn test"
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim /bin/sh -c "npm i -g && yarn test"
test-linux-x64-musl-binding:
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
run: ls -R .
shell: bash
- name: Test bindings
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine "corepack enable && yarn test"
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine /bin/sh -c "corepack enable && yarn test"
# publish:
# name: Publish
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 99fb52c

Please sign in to comment.