2020-05-03 15:09:41 -04:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-05-07 14:57:28 -04:00
|
|
|
- 'master'
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2020-05-03 15:09:41 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2020-05-03 15:35:54 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macOS-latest
|
2020-05-05 18:31:46 -04:00
|
|
|
- windows-latest
|
2020-05-03 15:09:41 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Install
|
2020-05-06 17:54:36 -04:00
|
|
|
run: npm install
|
2020-05-03 15:09:41 -04:00
|
|
|
-
|
|
|
|
name: Test
|
|
|
|
run: npm run test
|
2020-05-06 12:00:13 -04:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
file: ./coverage/clover.xml
|