2019-10-01 15:08:40 -05:00
|
|
|
name: CI
|
|
|
|
|
2019-10-03 04:18:43 -05:00
|
|
|
on: [push, pull_request]
|
2019-10-01 15:08:40 -05:00
|
|
|
|
2024-05-13 12:52:34 -05:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
concurrency:
|
2024-09-22 09:45:38 -05:00
|
|
|
group: ci-${{ github.ref }}-7.x
|
2024-05-13 12:52:34 -05:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2019-10-01 15:08:40 -05:00
|
|
|
jobs:
|
2024-09-22 09:45:38 -05:00
|
|
|
build:
|
2019-10-01 15:08:40 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-09-22 09:45:38 -05:00
|
|
|
node_version: [20, 22]
|
|
|
|
uses: verdaccio/verdaccio/.github/workflows/yarn-ci.yml@master
|
|
|
|
with:
|
|
|
|
node_version: ${{ matrix.node_version }}
|