mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
68f6e6e877
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
37 lines
957 B
YAML
37 lines
957 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ci:
|
|
name: Node ${{ matrix.node_version }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node_version: [12, 14, 16, 18, 19]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
- 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: Format
|
|
run: yarn format:check
|
|
- name: Lint
|
|
## eslint does not support node 12
|
|
if: "!contains(matrix.node_version, '12')"
|
|
run: yarn lint
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Types
|
|
run: yarn code:types
|
|
- name: Test
|
|
## jest does not support node 12
|
|
if: "!contains(matrix.node_version, '12')"
|
|
run: yarn test
|