mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(github) workflows: split into 4 steps
This commit is contained in:
parent
1dbc978916
commit
175d01f3d1
1 changed files with 14 additions and 1 deletions
15
.github/workflows/nodejs.yml
vendored
15
.github/workflows/nodejs.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue