Skip to content

ci: fix pnpm setup with packageManager field #2

ci: fix pnpm setup with packageManager field

ci: fix pnpm setup with packageManager field #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Type check
run: pnpm compile
- name: Test
run: pnpm test
- name: Build
run: pnpm build