-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (40 loc) · 1 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build & Test
on:
push:
branches: [master]
paths-ignore:
- '**/**.md'
pull_request:
types: [opened, synchronize]
paths-ignore:
- '**/**.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ['14']
os: [ubuntu-latest, windows-latest]
include:
- node-version: '14'
os: windows-latest
- node-version: '14'
os: ubuntu-latest
coverage: true
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install
run: yarn install --frozen-lockfile
- run: yarn test
if: ${{ !matrix.coverage }}
- run: yarn test:coverage
if: ${{ matrix.coverage }}
- name: build
run: yarn build
- uses: codecov/codecov-action@v1
if: ${{ matrix.coverage }}