2 changed files with 14789 additions and 20 deletions
@ -1,20 +1,22 @@ |
|||||||
name: Node.js CI |
name: Node CI |
||||||
|
|
||||||
on: [push] |
on: [push] |
||||||
|
|
||||||
jobs: |
jobs: |
||||||
build: |
build: |
||||||
|
|
||||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||||
|
|
||||||
steps: |
steps: |
||||||
- uses: actions/checkout@v1 |
- uses: actions/checkout@v1 |
||||||
- uses: actions/setup-node@v1 |
- uses: actions/setup-node@v1 |
||||||
with: |
with: |
||||||
node-version: 12.x |
node-version: 12.x |
||||||
- run: npm install |
- name: npm install, build, and test |
||||||
- run: npm run build |
run: | |
||||||
- run: npm run lint |
npm ci |
||||||
- run: npm test |
npm run build --if-present |
||||||
env: |
npm run lint |
||||||
CI: true |
npm test |
||||||
|
env: |
||||||
|
CI: true |
||||||
Loading…
Reference in new issue