Skip to content

Commit

Permalink
Merge pull request #1784 from trillium/ts.more_github_actions
Browse files Browse the repository at this point in the history
feat: More docker-compose -> docker compose
  • Loading branch information
trillium authored Oct 10, 2024
2 parents 0ecaecc + 093aa51 commit bdb9040
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/all-PRs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Build the backend container
run: docker compose build backend
- name: Run backend unit test suite
run: docker-compose run --rm backend yarn run test --testPathIgnorePatterns=routers
run: docker compose run --rm backend yarn run test --testPathIgnorePatterns=routers

test-backend-integration:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Build the backend container
run: docker compose build backend
- name: Run backend integration test suite
run: docker-compose run --rm backend yarn run test backend/routers/
run: docker compose run --rm backend yarn run test backend/routers/

test-client-unit:
runs-on: ubuntu-latest
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Build the client container
run: docker compose build client
- name: Run client unit test suite
run: docker-compose run --rm client yarn run test
run: docker compose run --rm client yarn run test

# test-mvp-unit:
# runs-on: ubuntu-latest
Expand All @@ -67,4 +67,4 @@ jobs:
# - name: Build the client mvp container
# run: docker compose build client-mvp-04
# - name: Run frontend unit test suite
# run: docker-compose run --rm client-mvp-04 yarn run test
# run: docker compose run --rm client-mvp-04 yarn run test

0 comments on commit bdb9040

Please sign in to comment.