import-gpg/.github/workflows/test.yml

40 lines
707 B
YAML
Raw Normal View History

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