-
Notifications
You must be signed in to change notification settings - Fork 50
35 lines (35 loc) · 1.01 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
name: Playwright Tests
on:
push:
branches: [main]
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
env:
MAAS_URL: localhost:5240
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Setup MAAS
uses: canonical/setup-maas@main
with:
maas-url: ${{env.MAAS_URL}}/MAAS
- name: Create MAAS admin
run: sudo maas createadmin --username=admin --password=test [email protected]
- name: Wait for MAAS UI to be ready
run: yarn run wait-on http-get://${{env.MAAS_URL}}/MAAS/r
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30