Skip to content

Commit

Permalink
CI: ensure Docker is run in non-interactive mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Dec 6, 2022
1 parent 16104de commit 9f6cc94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
key: ${{ steps.gen-cache-key.outputs.key }}
- name: Build
if: steps.cache.outputs.cache-hit != 'true'
run: npm run build
run: |
docker build -t wasm-vips .
docker run --rm -v ${{ github.workspace }}:/src wasm-vips ./build.sh
CI:
runs-on: ${{ matrix.os }}
needs: build
Expand Down

0 comments on commit 9f6cc94

Please sign in to comment.