Upgrade Suntory to 1.6.0 . Replace Copilot instructions with AGENTS.md #150
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, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| max-parallel: 1 | |
| matrix: | |
| # Available node versions: https://raw.githubusercontent.com/actions/node-versions/main/versions-manifest.json | |
| node: [ '22', '24', '26' ] | |
| name: node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| set-safe-directory: ${{ github.workspace }} | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: make deps | |
| - run: make ci | |
| - uses: coverallsapp/github-action@v2.3.6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| path-to-lcov: .bob/coverage/c8/lcov.info | |
| - uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.STUDIO_GITHUB_TOKEN }} | |
| publish_dir: .bob |