-
Notifications
You must be signed in to change notification settings - Fork 8
50 lines (50 loc) · 1.58 KB
/
playwright.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
e2e:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: |
npm ci
npx playwright install --with-deps
- name: Start local environment
run: |
cp .env.test .env
docker compose up -d
sleep 15
yarn migrate
yarn seed
yarn build
yarn start &
env:
OVH_APP_KEY: ${{ secrets.OVH_APP_KEY }}
OVH_APP_SECRET: ${{ secrets.OVH_APP_SECRET }}
OVH_CONSUMER_KEY: ${{ secrets.OVH_CONSUMER_KEY }}
- name: Wait
uses: cygnetdigital/[email protected]
with:
url: "http://localhost:8100/"
responseCode: "200"
timeout: 120000
interval: 500
- name: Launch playwright
run: |
npx playwright test
env:
HOSTNAME: localhost:8100
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 3