mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-09 15:03:31 -05:00
41 lines
805 B
YAML
41 lines
805 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
steps:
|
|
-
|
|
# https://github.com/actions/checkout
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Install
|
|
run: npm install
|
|
-
|
|
name: Test
|
|
run: npm run test
|
|
-
|
|
# 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
|