Fix build errors

This commit is contained in:
Andrew Branch
2020-03-05 12:15:49 -08:00
parent 04e04654c8
commit f275de239d
9 changed files with 125 additions and 71 deletions

26
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: 'build and test'
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '12' ]
fail-fast: true
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: install
run: npm ci && lerna bootstrap
- name: lint
run: npm run lint
- name: test
run: npm test