Skip to content

Commit

Permalink
chore: install docker after static tests
Browse files Browse the repository at this point in the history
  • Loading branch information
solufa committed Dec 25, 2023
1 parent 682542e commit a24a450
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
cp docker/dev/.env.example docker/dev/.env
cp server/.env.example server/.env
docker compose up -d
- name: setup Node.js
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -40,5 +36,9 @@ jobs:
- run: npm run generate
- run: npm run lint
- run: npm run typecheck
- run: cp client/.env.example client/.env
- run: |
cp client/.env.example client/.env
cp server/.env.example server/.env
cp docker/dev/.env.example docker/dev/.env
docker compose up -d
- run: npm test

0 comments on commit a24a450

Please sign in to comment.