-
Notifications
You must be signed in to change notification settings - Fork 508
51 lines (39 loc) · 1.17 KB
/
nodejs.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
name: Node CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint-and-dedupe:
runs-on: ubuntu-latest
name: Lint & Deduplicate deps on node 10.x and ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint codebase
run: yarn lint:post-build
- name: Deduplicate dependencies
run: yarn deduplicate:check
test:
name: Test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['10.x', '12.x', '14.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Test package
run: yarn test:post-build