Skip to content

Commit

Permalink
ci: fix server urls
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed May 7, 2024
1 parent a3305d6 commit 5e0809f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- main
pull_request:

env:
OCIS_URL: https://localhost:9200

jobs:
ci:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -44,7 +47,7 @@ jobs:
run: |
docker run -d \
-p 9200:9200 \
-e OCIS_URL=https://ocis:9200 \
-e OCIS_URL=$OCIS_URL \
-e OCIS_INSECURE=true \
-e OCIS_LOG_LEVEL=error \
-e WEB_UI_CONFIG_FILE=/web/config.json \
Expand All @@ -70,7 +73,6 @@ jobs:
run: npx playwright install chromium

- name: e2e
run: sleep 5 && pnpm test:e2e tests/e2e/features/**/*.feature
run: pnpm test:e2e tests/e2e/features/**/*.feature
env:
OCIS_URL: https://localhost:9200
HEADLESS: true

0 comments on commit 5e0809f

Please sign in to comment.