Skip to content

chore: refresh dependencies and GitHub Actions #88

chore: refresh dependencies and GitHub Actions

chore: refresh dependencies and GitHub Actions #88

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Install browser engine
run: npx playwright install --with-deps chromium
- name: Format
run: npm run fmt:check
- name: Lint
run: npm run lint && npm run typecheck
- name: Build
run: npm run build
- name: Test
run: npm test