-
Notifications
You must be signed in to change notification settings - Fork 275
52 lines (50 loc) · 1.18 KB
/
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
50
51
52
name: main
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14', '16']
name: Test on node@v${{ matrix.node }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Setup 🔧
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: 'npm'
- name: Install 🪄
run: npm ci
- name: Lint 🔍
run: npm run lint
- name: Prettier 🔍
run: npm run prettycheck
- name: TypeScript 🔍
run: npm run typecheck
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '14', '16']
name: Build on node@v${{ matrix.node }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Setup 🔧
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: 'npm'
- name: Install 🪄
run: npm ci
- name: Build 💎
run: npm run build