0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-27 22:59:51 -05:00
verdaccio/.github/workflows/ci.yml

30 lines
681 B
YAML
Raw Normal View History

name: CI
on: [push, pull_request]
jobs:
ci:
name: Node ${{ matrix.node_version }}
strategy:
fail-fast: false
matrix:
node_version: [14, 16, 18, 19]
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
2020-10-11 10:06:21 -07:00
run: yarn install --immutable
- name: Build
run: yarn build
2023-01-29 16:25:36 +01:00
- name: Types
run: yarn code:types
- name: Test
run: yarn test