1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/.github/workflows/ci.yml
Juan Picado 6eef0157ba
fix: update dependencies, docker base and build deps (#2007)
* fix: update docker to v14.15.1

* chore: update deps

* chore: update actions/setup-node security update
2020-11-20 06:43:57 +01:00

30 lines
585 B
YAML

name: CI
on: [push, pull_request]
jobs:
ci:
name: Node ${{ matrix.node_version }}
strategy:
fail-fast: false
matrix:
node_version: [10, 12, 13, 14, 15]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- name: Use Node ${{ matrix.node_version }}
uses: actions/setup-node@v1.4.4
with:
node_version: ${{ matrix.node_version }}
- name: Install
run: yarn install --immutable
- name: Build
run: yarn code:build
- name: Lint
run: yarn lint
- name: Test
run: yarn test