1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 22:30:44 +00:00
lancedikson_bowser/.github/workflows/nodejs.yml

28 lines
473 B
YAML
Raw Normal View History

2019-08-27 17:13:33 +00:00
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.16.3]
2019-08-27 17:13:33 +00:00
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2019-10-02 18:50:47 +00:00
- name: npm ci, build, and test
2019-08-27 17:13:33 +00:00
run: |
2019-10-02 18:50:47 +00:00
npm ci
2019-08-27 17:13:33 +00:00
npm run lint
npm run build
npm test
env:
CI: true