Skip to content

Commit

Permalink
Merge pull request #1783 from trillium/ts.update_github_actions
Browse files Browse the repository at this point in the history
feat: Change docker-compose build to docker compose build
  • Loading branch information
trillium authored Oct 10, 2024
2 parents c469963 + 847ba5f commit 0ecaecc
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 @@ -17,7 +17,7 @@ jobs:
envkey_REACT_APP_PROXY: ${{ secrets.REACT_APP_PROXY }}
file_name: backend/.env
- name: Build the backend container
run: docker-compose build backend
run: docker compose build backend
- name: Run backend unit test suite
run: docker-compose run --rm backend yarn run test --testPathIgnorePatterns=routers

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
envkey_MAILHOG_PASSWORD: ${{ secrets.MAILHOG_PASSWORD }}
file_name: backend/.env
- name: Build the backend container
run: docker-compose build backend
run: docker compose build backend
- name: Run backend integration test suite
run: docker-compose run --rm backend yarn run test backend/routers/

Expand All @@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build the client container
run: docker-compose build client
run: docker compose build client
- name: Run client unit test suite
run: docker-compose run --rm client yarn run test

Expand All @@ -65,6 +65,6 @@ jobs:
# steps:
# - uses: actions/checkout@v4
# - name: Build the client mvp container
# run: docker-compose build client-mvp-04
# run: docker compose build client-mvp-04
# - name: Run frontend unit test suite
# run: docker-compose run --rm client-mvp-04 yarn run test

0 comments on commit 0ecaecc

Please sign in to comment.