Skip to content

test: harden CI packed package integration checks #222

test: harden CI packed package integration checks

test: harden CI packed package integration checks #222

Workflow file for this run

name: Github Tests
on:
push:
workflow_dispatch:
jobs:
vitest-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'pnpm'
- name: Install latest npm
run: npm install -g npm@latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Build
run: pnpm build