Update GitHub Actions and Git setup workflow #249
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: tests, linter and build" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| ci: | |
| if: ${{ !contains(github.event.head_commit.message || github.event.pull_request.title || '', '[skip-CI]') }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [18, 20, 22, 24] | |
| name: "node:${{ matrix.node }}" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Run checks | |
| uses: ./.github/actions/checks | |
| with: | |
| node-version: ${{ matrix.node }} |