Skip to content

chore(release): 0.4.0 #10

chore(release): 0.4.0

chore(release): 0.4.0 #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [20, 22]
runs-on: ${{ matrix.os }}
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
- run: npm run build
- name: Skill assets in sync with canonical sources
run: |
./scripts/sync-skill-assets.sh
if ! git diff --exit-code -- skills/ccairgap-configure; then
echo "::error::Skill assets drifted from canonical sources under docs/ and docker/."
echo "Run scripts/sync-skill-assets.sh locally and commit the result."
exit 1
fi