12345678910111213141516171819202122 |
- name: Node CI
- on: [push]
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - uses: actions/setup-node@v1
- with:
- node-version: 12.x
- - name: npm install, build, and test
- run: |
- npm ci
- npm run build --if-present
- npm run lint
- npm test
- env:
- CI: true
|