Skip to content

Add basic app

Add basic app #21

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright browsers
run: pnpm run install-playwright
- name: Run Playwright tests
run: pnpm run e2e
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: api-playwright-report
# path: next-apps/*/playwright-report/
# retention-days: 30