chore(github) workflows: split into 4 steps

This commit is contained in:
coderaiser 2020-09-17 16:58:14 +03:00
parent 1dbc978916
commit 175d01f3d1

View file

@ -13,8 +13,21 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: npm install, build, and test
- name: install
run: |
npm install
- name: lint
run: |
npm run lint
- name: build
run: |
npm run build
npm test
- name: test
run: |
npm test