Skip to content

Commit

Permalink
Use "docker compose" in wasm build
Browse files Browse the repository at this point in the history
The wasm github action is using the deprecated `docker-compose` command.
This is update to use `docker compose`.
  • Loading branch information
s-perron committed Aug 7, 2024
1 parent 246daf2 commit e4548ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
with:
fetch-depth: '0'
- name: Build web
run: docker-compose -f source/wasm/docker-compose.yml --project-directory . up
run: docker compose -f source/wasm/docker-compose.yml --project-directory . up
- name: Run tests
run: node test/wasm/test.js

0 comments on commit e4548ab

Please sign in to comment.