-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (61 loc) · 1.64 KB
/
Copy pathmatrix.yml
File metadata and controls
62 lines (61 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Test Matrix
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20]
operating-system:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install and Cache Dependencies
uses: ./.github/actions/cached-deps
- name: Build
run: npm run build
test:
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20]
operating-system: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install and Cache Dependencies
uses: ./.github/actions/cached-deps
- name: Test
run: npm run test
check:
needs: [build, test]
runs-on: ubuntu-latest
if: always()
steps:
- name: Check build matrix status
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1
- name: All jobs succeeded
if: contains(needs.*.result, 'failure') != true && contains(needs.*.result, 'cancelled') != true
run: echo "All jobs completed successfully!"