2019-10-01 22:08:40 +02:00
|
|
|
name: CI
|
|
|
|
|
2019-10-03 11:18:43 +02:00
|
|
|
on: [push, pull_request]
|
2019-10-01 22:08:40 +02:00
|
|
|
|
2024-05-05 21:57:22 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
concurrency:
|
2024-09-22 11:31:20 +02:00
|
|
|
group: ci-${{ github.ref }}-6.x
|
2024-05-05 21:57:22 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2019-10-01 22:08:40 +02:00
|
|
|
jobs:
|
2024-09-22 11:31:20 +02:00
|
|
|
build:
|
2019-10-01 22:08:40 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-09-22 11:31:20 +02:00
|
|
|
node_version: [18, 20, 21, 22]
|
|
|
|
uses: verdaccio/verdaccio/.github/workflows/yarn-ci.yml@ci-refactor
|
|
|
|
with:
|
|
|
|
node_version: ${{ matrix.node_version }}
|