Skip to content
Merged
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 .env.development.test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For running GitHub Actions tests using docker
NODE_ENV=development
NODE_ENV=production
VUE_APP_API_URL=http://host.docker.internal:8082
VUE_APP_API_MOCK=0
VUE_APP_RECAPTCHA_SITE_KEY="6LeHzbMUAAAAABjNp0vILaWr5ZeYHmteF7rGuZNV" # todo replace with test key
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/browser-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
- run: sudo chown -R 1000:1000 .
working-directory: ui

- run: docker compose run --rm ui npm install
- run: docker compose run --rm --env NODE_ENV=development ui npm ci
working-directory: ui

- run: docker compose --profile browser-tests up -d --wait
- run: docker compose --profile browser-tests up --wait
working-directory: ui

- run: docker compose exec -it ui npm run test:e2e
Expand Down
Loading