Skip to content

Upgrade examples to v2 #35

Upgrade examples to v2

Upgrade examples to v2 #35

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- run: npm ci
- run: npm run format:check
- run: npm run typecheck
- run: npm run test