-
-
Notifications
You must be signed in to change notification settings - Fork 2
32 lines (29 loc) · 710 Bytes
/
test.yaml
File metadata and controls
32 lines (29 loc) · 710 Bytes
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
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache Yarn Cache
uses: actions/cache@v2
with:
path: 'node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install modules
run: yarn --frozen-lockfile
- name: License Header Check
run: yarn license:header:check
- name: OSS License Whitelist Check
run: yarn license:check
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn coverage:upload