Skip to content

Update GitHub Actions and Git setup workflow #249

Update GitHub Actions and Git setup workflow

Update GitHub Actions and Git setup workflow #249

Workflow file for this run

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 }}