Skip to content

Commit

Permalink
test for ci #3036
Browse files Browse the repository at this point in the history
  • Loading branch information
emilschn committed Nov 6, 2024
1 parent 94e815b commit 1366118
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Symfony CLI
run: |
curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | sudo -E bash
sudo apt install symfony-cli
- name: Start containers
run: docker compose -f "docker-compose.yml" up -d --build

Expand Down
7 changes: 7 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,11 @@ export default defineConfig({
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
webServer: {
command: `symfony server:start --port=8080`,
env: {
APP_ENV: 'test',
},
url: `http://localhost:8080`,
},
});

0 comments on commit 1366118

Please sign in to comment.