Skip to content

chore(deps): bump actions/upload-pages-artifact from 4 to 5 #18

chore(deps): bump actions/upload-pages-artifact from 4 to 5

chore(deps): bump actions/upload-pages-artifact from 4 to 5 #18

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Quality and Chromium E2E
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10.13.1
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Check formatting
run: pnpm format:check
- name: Type-check
run: pnpm typecheck
- name: Run unit tests
run: pnpm test
- name: Build production site
run: pnpm build
- name: Install Playwright Chromium
run: pnpm exec playwright install --with-deps chromium
- name: Run Playwright E2E
run: pnpm test:e2e
env:
CI: 'true'