Skip to content

Bump actions/checkout from 6 to 7 in the all-actions group (#158) #186

Bump actions/checkout from 6 to 7 in the all-actions group (#158)

Bump actions/checkout from 6 to 7 in the all-actions group (#158) #186

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install
- run: pnpm run format:check
- run: pnpm run typecheck
- run: pnpm test
- run: pnpm run build
- run: node dist/cli.js
- run: pnpm install
- run: pnpm run test:examples