Skip to content

Commit

Permalink
Fix Github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicPoullain committed Aug 2, 2024
1 parent db22142 commit dfb0405
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Start up databases
run: docker-compose up -d
run: docker compose up -d
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"scripts": {
"lint": "tslint -c tslint.json --project tsconfig.json",
"lint:fix": "tslint -c tslint.json --project tsconfig.json --fix",
"start-docker": "docker-compose build && docker-compose up -d",
"stop-docker": "docker-compose down",
"start-docker": "docker compose build && docker compose up -d",
"stop-docker": "docker compose down",
"clean": "lerna clean",
"test": "lerna run --no-bail test"
},
Expand Down

0 comments on commit dfb0405

Please sign in to comment.