moved user and session generation to setup #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Pipeline | |
env: | |
AUTH_SECRET: ${{ secrets.AUTH_SECRET }} | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- v3-svelte5 | |
pull_request: | |
branches: | |
- main | |
- master | |
- v3-svelte5 | |
jobs: | |
test: | |
name: Playwright Tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm ci --force # TODO: Remove force later | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Run Playwright tests | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
run: npx playwright test | |
- name: Upload Playwright report | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |