Update nodejs.yml

feat/ci
Raphael 2019-10-25 10:40:54 +02:00 committed by GitHub
parent 3d3204e322
commit 9d88565167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -16,12 +16,15 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Lint & build
- name: Install & lint
run: |
npm install -g lerna
npm install
npm run bootstrap
npm run client:lint
npm run build
lerna run lint
- name: Build
run: |
lerna run build
- name: Test
run: |
npm test
lerna run test