Skip to content

refactor: simplify runtime-driver test suites and archive openspec ch… #9

refactor: simplify runtime-driver test suites and archive openspec ch…

refactor: simplify runtime-driver test suites and archive openspec ch… #9

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 8.15.6
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm check-types
- name: Run tests
run: pnpm test