0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/.github/workflows/ci.yml

34 lines
649 B
YAML
Raw Normal View History

name: CI
on: [push, pull_request]
jobs:
ci:
name: Node ${{ matrix.node_version }}
strategy:
fail-fast: false
matrix:
2020-03-03 23:59:19 +01:00
node_version: [8, 10, 12, 13]
runs-on: ubuntu-latest
steps:
2020-03-03 23:59:19 +01:00
- uses: actions/checkout@v2.3.1
- name: Use Node ${{ matrix.node_version }}
2020-03-03 23:59:19 +01:00
uses: actions/setup-node@v2.1.1
with:
2020-03-03 23:59:19 +01:00
node_version: ${{ matrix.node_version }}
- name: Install
2020-03-03 23:59:19 +01:00
run: yarn
- name: Bootstrap Lerna
run: yarn bootstrap
- name: Lint
run: yarn lint
2020-03-03 23:59:19 +01:00
- name: Clean
run: yarn clean
- name: Build
run: yarn build
- name: Test
run: yarn test