mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
2941522099
* migrate to forceMigrateToSecureLegacySignature * Update token.ts * remove dep * Update token.ts
35 lines
796 B
YAML
35 lines
796 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
concurrency:
|
|
group: ci-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
name: Node ${{ matrix.node_version }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node_version: [14, 16, 18, 19, 20, 21, 22]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
- name: Use Node ${{ matrix.node_version }}
|
|
uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2.5.2
|
|
with:
|
|
node-version: ${{ matrix.node_version }}
|
|
- name: Install
|
|
run: yarn install --immutable
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Types
|
|
run: yarn code:types
|
|
- name: Test
|
|
run: yarn test
|