Skip to content

ci: fix issue template (#5515) #1277

ci: fix issue template (#5515)

ci: fix issue template (#5515) #1277

Workflow file for this run

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