deps(deps): bump minitest from 6.0.1 to 6.0.3 #45
Workflow file for this run
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: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test Suite | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup toolchain (mise) | |
| uses: jdx/mise-action@v3 | |
| - name: Install mise tools | |
| run: mise install | |
| - name: Setup Chrome | |
| id: chrome | |
| uses: browser-actions/setup-chrome@v2 | |
| - name: Install Ruby and Bun dependencies | |
| run: | | |
| mise exec -- bundle install --jobs 4 --retry 3 | |
| mise exec -- bun install --frozen-lockfile | |
| - name: Run checks | |
| env: | |
| CHROME_BIN: ${{ steps.chrome.outputs.chrome-path }} | |
| run: mise run ci |