Skip to content

feat: use parallel jobs in github actions #3269

feat: use parallel jobs in github actions

feat: use parallel jobs in github actions #3269

Workflow file for this run

name: CI
on:
push:
branches: [next]
pull_request:
permissions:
contents: read
jobs:
version-matrix:
strategy:
fail-fast: false
matrix:
node-version: [20]
runner: [ubuntu-latest, windows-latest, macos-14]
uses: ./.github/workflows/ci-common.yml
with:
node-version: ${{ matrix.node-version }}
runner: ${{ matrix.runner }}
secrets: inherit