Skip to content

Commit

Permalink
Fix kuzzle runner version to 18
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Feb 1, 2024
1 parent eb83ed5 commit 2b9c46c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- name: Run build
run: |
npm install
npm ci
npm run build
shell: bash
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ services:
- "/var/run/docker.sock:/var/run/docker.sock:ro"

kuzzle-installer:
image: kuzzleio/kuzzle-runner
image: kuzzleio/kuzzle-runner:18
container_name: kuzzle-installer
command: bash -c "npm install"
command: bash -c "npm ci"
volumes:
- .:/var/app

kuzzle:
image: kuzzleio/kuzzle-runner
image: kuzzleio/kuzzle-runner:18
command: bash -c "npm run dev"
volumes:
- ".:/var/app"
Expand Down

0 comments on commit 2b9c46c

Please sign in to comment.