Skip to content

hero: tagline -> a Claude Code plugin to give Claude wings #32

hero: tagline -> a Claude Code plugin to give Claude wings

hero: tagline -> a Claude Code plugin to give Claude wings #32

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [18, 20, 22]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: node --check src/index.js
- name: test suite
run: node scripts/run-tests.mjs