Skip to content

Two workflows that chain primitives, composed from the skills' own commands #28

Two workflows that chain primitives, composed from the skills' own commands

Two workflows that chain primitives, composed from the skills' own commands #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run typecheck
- run: npm test