Skip to content

chore(deps-dev): bump typescript from 6.0.3 to 7.0.2 #14

chore(deps-dev): bump typescript from 6.0.3 to 7.0.2

chore(deps-dev): bump typescript from 6.0.3 to 7.0.2 #14

Workflow file for this run

name: CI
on:
push:
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 Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Lint
run: npm run lint
- name: Type-check
run: npm run typecheck
- name: Run unit tests
run: npm run test
- name: Build production site
run: npm run build
- name: Build single-file offline edition
run: npm run build:offline
- name: Install Playwright Chromium
run: npx playwright install --with-deps chromium
- name: Run Playwright E2E
run: npm run test:e2e
env:
CI: 'true'