Skip to content

fix(spawn): spawn the detected absolute CLI path, not the bare name (#104) #219

fix(spawn): spawn the detected absolute CLI path, not the bare name (#104)

fix(spawn): spawn the detected absolute CLI path, not the bare name (#104) #219

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
# Cancel in-flight runs for the same ref when a new push lands.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: typecheck · test · build (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build server
run: pnpm build:server
- name: Build cockpit
run: pnpm build