Skip to content

Commit

Permalink
fix: move docker compose to v2 (#940)
Browse files Browse the repository at this point in the history
## What kind of change does this PR introduce?

See announcements:
https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md

`docker-compose` (V1) is no longer in ubuntu-latest 22.04
  • Loading branch information
J0 authored Aug 5, 2024
1 parent 29fc62c commit 38eef89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"lint": "eslint ./src/**/* test/**/*.test.ts",
"test": "run-s test:clean test:infra test:suite test:clean",
"test:suite": "jest --runInBand",
"test:infra": "cd infra && docker-compose down && docker-compose pull && docker-compose up -d && sleep 30",
"test:clean": "cd infra && docker-compose down",
"test:infra": "cd infra && docker compose down && docker compose pull && docker compose up -d && sleep 30",
"test:clean": "cd infra && docker compose down",
"docs": "typedoc src/index.ts --out docs/v2 --excludePrivate --excludeProtected",
"docs:json": "typedoc --json docs/v2/spec.json --excludeExternals --excludePrivate --excludeProtected src/index.ts"
},
Expand Down

0 comments on commit 38eef89

Please sign in to comment.