-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (40 loc) · 835 Bytes
/
main.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
45
46
47
48
49
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node 12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: yarn prep --frozen-lockfile
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Build
run: yarn build
env:
CI: true
- name: Build demo
run: yarn build-demo
env:
CI: true
- name: Lint demo
run: yarn lint-demo
env:
CI: true
- name: Test
run: yarn test
env:
CI: true
- name: Size
run: yarn size
env:
CI: true