Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

json-server version sync #1249

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
${{ runner.OS }}-

- name: Install & run server.js
run: cd src/SWP/Bundle/CoreBundle/Tests/Functional/Resources/ && npm install json-server && nohup node server.js &
run: cd src/SWP/Bundle/CoreBundle/Tests/Functional/Resources/ && npm install && nohup node server.js &

- name: Test loading fixtures from dev env in test env
run: |
Expand Down
4 changes: 2 additions & 2 deletions etc/docker/docker-compose.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ services:
- "8082:8080"
- "5555:5555"
test-api:
image: node:10-alpine
image: node:18-alpine
ports:
- "3000:3000"
volumes:
- ../../src/SWP/Bundle/CoreBundle/Tests/Functional/Resources:/app:rw
working_dir: /app
command: sh -c "npm install json-server && nohup node server.js"
command: sh -c "npm install && nohup node server.js"

volumes:
publisher_logs:
Expand Down
Loading
Loading