2020-05-23 01:37:31 -04:00
|
|
|
name: Node.js CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-05-29 22:09:15 -04:00
|
|
|
branches:
|
2020-06-12 21:26:47 -04:00
|
|
|
- master
|
2020-05-23 01:37:31 -04:00
|
|
|
|
|
|
|
jobs:
|
2020-07-13 06:48:33 -04:00
|
|
|
|
2020-05-29 22:09:15 -04:00
|
|
|
test-node:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
2020-07-13 19:45:20 -04:00
|
|
|
fail-fast: false
|
2020-05-29 22:09:15 -04:00
|
|
|
matrix:
|
2020-07-13 08:42:40 -04:00
|
|
|
node-version: [8.x, 10.x, 12.x, 13.x ]
|
2020-05-29 22:09:15 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bootstrap
|
2020-07-13 06:48:33 -04:00
|
|
|
- run: npm run build-all
|
2020-05-29 22:09:15 -04:00
|
|
|
- run: npm run test-node
|
|
|
|
|
2020-07-13 06:48:33 -04:00
|
|
|
|
2020-05-29 22:09:15 -04:00
|
|
|
test-browser:
|
2020-05-23 01:37:31 -04:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
2020-07-13 19:45:20 -04:00
|
|
|
fail-fast: false
|
2020-05-23 01:37:31 -04:00
|
|
|
matrix:
|
2020-05-29 22:09:15 -04:00
|
|
|
module: [ 'esm', 'umd' ]
|
2020-05-23 01:37:31 -04:00
|
|
|
|
|
|
|
steps:
|
2020-05-29 22:09:15 -04:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bootstrap
|
2020-07-13 06:48:33 -04:00
|
|
|
- run: npm run build-all
|
2020-05-29 22:09:15 -04:00
|
|
|
- run: npm run test-browser-${{ matrix.module }}
|
2020-05-23 01:37:31 -04:00
|
|
|
|
2020-07-13 06:48:33 -04:00
|
|
|
|
|
|
|
coverage:
|
|
|
|
|
|
|
|
name: Coverage
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2020-07-13 19:45:20 -04:00
|
|
|
continue-on-error: true
|
|
|
|
|
2020-07-13 06:48:33 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run bootstrap
|
|
|
|
- run: npm run build-all
|
|
|
|
- run: npm run test-coverage
|