7469978eecdeb7dd9c6f67de37d62b8c23666e64
[poolifier.git] / .github / workflows / main.yml
1 name: NodeCI
2
3 on: [push, pull_request]
4
5 jobs:
6 build:
7
8 runs-on: ubuntu-latest
9
10 strategy:
11 matrix:
12 node-version: [12.x, 14.x]
13
14 steps:
15 - uses: actions/checkout@v1
16 - name: Use Node.js ${{ matrix.node-version }}
17 uses: actions/setup-node@v1
18 with:
19 node-version: ${{ matrix.node-version }}
20 - name: npm install, build, and test
21 run: |
22 npm ci
23 npm run build --if-present
24 npm run test
25 export COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}
26 npm run coverage
27 env:
28 CI: true