Skip to content

chore: test default pipeline #22

chore: test default pipeline

chore: test default pipeline #22

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
jobs:
tests:
name: Playwright Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install -g pnpm@5.3
- run: pnpm install
- run: pnpm build
- run: npx playwright install --with-deps
- run: pnpm test || exit 1
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30