forked from jaredpalmer/tsdx
-
Notifications
You must be signed in to change notification settings - Fork 23
54 lines (44 loc) · 1.24 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
52
53
54
name: Node CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
lint-and-dedupe:
runs-on: ubuntu-latest
name: Lint & Deduplicate deps on node 18.x and ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install deps and build (with cache)
run: npm install && npm run build
- name: Lint codebase
run: npm run lint:post-build
test:
name: Test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- os: ubuntu-latest
node: '16.x'
- os: ubuntu-latest
node: '19.x'
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
run: npm install && npm run build
- name: Test package
run: npm run test:post-build