Skip to content

Commit

Permalink
correctly set env, missing cd
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog-crabnebula committed Nov 16, 2023
1 parent 8943152 commit e9ab9ac
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/publish-packager-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,7 @@ jobs:
shell: bash
- name: Test bindings
working-directory: .
env:
PACKAGER_FORMATS: deb
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim sh -c "cd bindings/packager/nodejs && yarn test"
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-slim sh -c "cd bindings/packager/nodejs && PACKAGER_FORMATS=deb yarn test"
test-linux-x64-musl-binding:
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -282,9 +280,7 @@ jobs:
shell: bash
- name: Test bindings
working-directory: .
env:
PACKAGER_FORMATS: deb
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine sh -c "cd bindings/packager/nodejs && yarn test"
run: docker run --rm -v $(pwd):/build -w /build node:${{ matrix.node }}-alpine sh -c "cd bindings/packager/nodejs && PACKAGER_FORMATS=deb yarn test"
test-linux-aarch64-gnu-binding:
name: Test bindings on aarch64-unknown-linux-gnu - node@${{ matrix.node }}
needs:
Expand Down Expand Up @@ -329,6 +325,7 @@ jobs:
run: |
export PACKAGER_FORMATS=deb
set -e
cd bindings/packager/nodejs
yarn test
ls -la
test-linux-aarch64-musl-binding:
Expand Down

0 comments on commit e9ab9ac

Please sign in to comment.