mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-20 22:52:46 -05:00
e753da3d41
it fails with corepack and build
19 lines
377 B
YAML
19 lines
377 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
concurrency:
|
|
group: ci-${{ github.ref }}-6.x
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node_version: [18, 20, 21, 22]
|
|
uses: verdaccio/verdaccio/.github/workflows/yarn-ci.yml@master
|
|
with:
|
|
node_version: ${{ matrix.node_version }}
|