-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (41 loc) · 1.22 KB
/
build.yml
File metadata and controls
47 lines (41 loc) · 1.22 KB
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
name: Build
on:
push:
pull_request:
env:
PRIMARY_NODEJS_VERSION: 18
REPORTER: 'min'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ env.PRIMARY_NODEJS_VERSION }}
uses: actions/setup-node@v2
with:
node-version: ${{ env.PRIMARY_NODEJS_VERSION }}
cache: 'npm'
- run: npm ci
- run: npm run lint
unit-tests:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node_version:
- 12.20.0
- 14.13.0
- 16
- 18
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: 'npm'
- run: npm ci
- run: npm run test