-
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (40 loc) · 981 Bytes
/
CI.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
name: CI
on: push
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.4.0
with:
node-version: 14.x
- run: npm install
- run: npm run build
- run: npm run format
- uses: actions/upload-artifact@v3
with:
name: lib
path: lib/
- uses: actions/upload-artifact@v3
with:
name: aod.min
path: aod.min*
Test:
needs: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14, 15, 16]
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2.4.0
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v3
with:
name: lib
path: lib
- run: npm install
- run: npm run lint --if-exists
- run: npm run coverage --if-exists