Skip to content

Commit

Permalink
fix: Continuous integration improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Axeloooo committed Nov 19, 2023
1 parent 34bea91 commit 5b2b3b0
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ jobs:
run: docker volume create db

- name: Start database
run: docker run -d \
--name db \
-e MYSQL_ROOT_PASSWORD=root \
-e MYSQL_DATABASE=techstart-fashion \
-p 3306:3306 \
-v db:/var/lib/mysql \
--restart always \
mysql
run: |
docker run -d \
--name db \
-e MYSQL_ROOT_PASSWORD=root \
-e MYSQL_DATABASE=techstart-fashion \
-p 3306:3306 \
-v db:/var/lib/mysql \
--restart always \
mysql
- name: Test
run: cd backend && npm run test

0 comments on commit 5b2b3b0

Please sign in to comment.