12345678910111213141516171819202122232425 |
- 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
- <<<<<<< HEAD:.github/workflows/nodejs.yml
- =======
- npm run build --if-present
- >>>>>>> 6599f97088dcda01d7b05abe9afc732165f0af62:.github/workflows/nodejs.yml
- npm run lint
- npm test
- env:
- CI: true
|