chore(release): 0.4.0 #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |