Skip to content

Enforce CI typechecking for extracted Rig markdown samples (#275) #617

Enforce CI typechecking for extracted Rig markdown samples (#275)

Enforce CI typechecking for extracted Rig markdown samples (#275) #617

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Use Node.js
uses: actions/setup-node@v7
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Typecheck extracted markdown rig samples
run: npm run sample -- --testNamePattern="skill markdown samples typecheck"