gpg/.github/workflows/test.yml

43 lines
814 B
YAML
Raw Normal View History

2020-05-03 15:09:41 -04:00
name: test
on:
pull_request:
branches:
- master
push:
branches:
- master
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:
-
# https://github.com/actions/checkout
name: Checkout
uses: actions/checkout@v2
-
name: Install
run: npm ci
-
name: Build
run: npm run build
-
name: Test
run: npm run test
2020-05-06 12:00:13 -04:00
-
# https://github.com/codecov/codecov-action
name: Upload coverage
uses: codecov/codecov-action@v1
if: success()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml