Skip to content

Update: Improve fisheries case study copy #217

Update: Improve fisheries case study copy

Update: Improve fisheries case study copy #217

Workflow file for this run

name: E2E Tests
on:
pull_request:
push:
branches:
- main
jobs:
e2e:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Install Playwright browsers
run: bunx playwright install --with-deps
- name: Build app
run: bun run build
- name: Run E2E tests (headless)
env:
CI: true
run: bun run test:e2e
- name: Upload Playwright HTML report
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
if-no-files-found: ignore