Skip to content

docs: v0.7.0公開の実測記録をCLAUDE.mdへ固定 #93

docs: v0.7.0公開の実測記録をCLAUDE.mdへ固定

docs: v0.7.0公開の実測記録をCLAUDE.mdへ固定 #93

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
name: test (${{ matrix.os }} · node ${{ matrix.node-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ['22.13.0', '22.x', '24.x']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Print versions
run: |
node --version
npm --version
- name: Run unit tests
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
npm test -- --test-concurrency=1
else
npm test
fi
shell: bash
- name: Verify CLI smoke (--version)
run: node bin/throughline.mjs --version