Skip to content

chore(deps-dev): bump eslint from 10.4.0 to 10.4.1 #109

chore(deps-dev): bump eslint from 10.4.0 to 10.4.1

chore(deps-dev): bump eslint from 10.4.0 to 10.4.1 #109

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 24
package-manager-cache: false
- run: corepack enable
- run: corepack prepare pnpm@10.33.1 --activate
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pnpm install --frozen-lockfile
- run: pip install -e ./apps/worker[dev]
- run: pnpm lint
- run: pnpm typecheck
- run: pnpm exec playwright install chromium
- run: pnpm test
- run: pnpm build
- run: pnpm check:bundle
- run: pip install python-multipart
- run: node scripts/section7-qualification.mjs
worker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: python -m pip install --upgrade pip
- run: pip install -e ./apps/worker[dev]
- run: pytest apps/worker/tests