Bump up to next pre-release version 4.0.1-pre.0 #101
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: [ '20', '22', '24' ] | |
| name: node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| set-safe-directory: ${{ github.workspace }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install . | |
| - run: npm link | |
| - run: /opt/hostedtoolcache/node/$(node --version | cut -c2-)/x64/bin/bob build | |
| - 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 |