1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-06 03:29:42 +07:00
verdaccio-ui/.github/workflows/main.yml
Sergio Herrera Guzmán 195a79a809 ci: drop Node 8 support
2019-09-11 22:35:29 +02:00

29 lines
605 B
YAML

name: CI
on: push
jobs:
build_test_lint:
name: Node ${{ matrix.node_version }} and ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node_version: [10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
version: ${{ matrix.node_version }}
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint