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 401c987e18
test: add yarn berry and npm7 to and new e2e config file (#1960)
* test: add e2e config file

* test: add e2e config file

* chore: add yarn berry to e2e

* chore: add npm7 to e2e

* chore: add node 14 to ci
2020-10-09 18:53:44 +02:00

30 lines
588 B
YAML

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