-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (37 loc) · 1023 Bytes
/
node.js.yaml
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
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --prune
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test
- name: Build all
run: npx wsrun -y 10 -lm --report -c prepack
if: github.ref == 'refs/heads/master'
- name: Build changed
run: npx wsrun --changedSince origin/master -y 10 -lm --report -c prepack
if: github.ref != 'refs/heads/master'
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
check-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: .github/check-deps.sh