Skip to content

Integration coverage for every side-effecting operation, plus the fixes it surfaced #247

Integration coverage for every side-effecting operation, plus the fixes it surfaced

Integration coverage for every side-effecting operation, plus the fixes it surfaced #247

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm lint
- name: Run build
run: pnpm build