1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| name: ci
| 'on':
| - push
| - pull_request
| jobs:
| test:
| name: Node ${{ matrix.node }} / ${{ matrix.os }}
| runs-on: ${{ matrix.os }}
| strategy:
| fail-fast: false
| matrix:
| os:
| - ubuntu-latest
| node:
| - '14'
| steps:
| - uses: actions/checkout@v2
| - uses: actions/setup-node@v2
| with:
| node-version: ${{ matrix.node }}
| - run: npm install
| - run: npm run build --if-present
| - run: npm test
|
|