Skip to content

Merge pull request #33 from kevinreber:hide-collections #78

Merge pull request #33 from kevinreber:hide-collections

Merge pull request #33 from kevinreber:hide-collections #78

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
env:
USE_MOCK_DALLE: "true"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Create .env file
run: |
echo "DATABASE_URL=${{ secrets.DATABASE_URL }}" > .env
echo "SESSION_SECRET=${{ secrets.SESSION_SECRET }}" >> .env
echo "USE_MOCK_DALLE=true" >> .env
- name: Generate Prisma Client
run: npx prisma generate
- name: Start Server
run: npm run dev & npx wait-on http://localhost:5173
- name: Run Playwright tests
run: npx playwright test
env:
CI: true
USE_MOCK_DALLE: "true"
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30