Skip to content

chore: chore: update package manager version and enhance README with … #38

chore: chore: update package manager version and enhance README with …

chore: chore: update package manager version and enhance README with … #38

Workflow file for this run

name: ci
on:
pull_request:
branches: ["**"]
push:
branches: ["**"]
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify (Node ${{ matrix.node }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
node: [22, 23, 24]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
check-latest: true
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint:check
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build
- name: Smoke test
run: pnpm test:smoke