ghaction-upx/.github/workflows/test.yml

39 lines
628 B
YAML
Raw Normal View History

2020-01-17 01:36:42 -07:00
name: test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
-
# https://github.com/actions/checkout
name: Checkout
uses: actions/checkout@v1
2020-04-08 18:32:42 -06:00
-
name: Build
run: |
npm install
npm run build
2020-01-17 01:36:42 -07:00
-
name: Install
run: npm ci
-
name: Build
run: npm run build
-
name: Test
run: npm run test