Skip to content

Sync pnpm lockfile for CI #80

Sync pnpm lockfile for CI

Sync pnpm lockfile for CI #80

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['20.19.0', '22.13.0']
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v5
with:
version: 9.15.4
cache: true
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test