-
Notifications
You must be signed in to change notification settings - Fork 236
109 lines (81 loc) · 2.32 KB
/
test.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Build and Test
on:
merge_group:
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
env:
CACHE_KEY: "${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}"
jobs:
configure:
name: Configure Build Matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- id: set-matrix
run: echo "matrix=$(jq -c . < ./.github/workflows/matrix.json)" >> $GITHUB_OUTPUT
build:
needs: configure
name: Build Package
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: ./.github/actions/build
with:
node: ${{ matrix.node }}
- name: Save build artifacts
uses: actions/cache/save@v4
with:
path: .
key: ${{ matrix.node }}-${{ env.CACHE_KEY }}
unit:
needs: [configure, build] # Require build to complete before running tests
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.configure.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- uses: actions/cache/restore@v4
with:
path: .
key: ${{ matrix.node }}-${{ env.CACHE_KEY }}
- run: npm run test:ci
# only upload coverage on one node version
- if: matrix.node == 18
uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # pin@3.1.5
lint:
needs: build # Require build to complete before running tests
name: Lint Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- uses: actions/cache/restore@v4
with:
path: .
key: 18-${{ env.CACHE_KEY }}
- run: npm run lint