Skip to content

Work offline and install as an app #6

Work offline and install as an app

Work offline and install as an app #6

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
playwright:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- run: npx playwright test
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
path: test-results/
retention-days: 7