Skip to content

🆙bump: version up dependencies #81

🆙bump: version up dependencies

🆙bump: version up dependencies #81

Workflow file for this run

name: Playwright Tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
paths:
- "app/**"
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
push:
paths:
- "app/**"
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "Dockerfile"
- "package.json"
- "*config.*"
workflow_dispatch:
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.SHA }}
env:
SHA: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Install bun
uses: oven-sh/setup-bun@v2
with:
bun-version: canary
- name: Install dependencies
run: bun i
- name: Build app
run: bun run build
- name: Install Playwright Browsers
run: bunx playwright install --with-deps
- name: Run Playwright tests
run: bunx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30