gpg/.github/workflows/test.yml
2020-05-06 00:31:46 +02:00

34 lines
564 B
YAML

name: test
on:
pull_request:
branches:
- master
push:
branches:
- master
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 ci
-
name: Build
run: npm run build
-
name: Test
run: npm run test