File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
test-and-build :
10
- runs-on : ubuntu-latest
10
+ runs-on : ${{ matrix.os }}
11
11
strategy :
12
12
matrix :
13
13
node-version : [16.x]
14
+ os : [ubuntu-latest, ubuntu-24.04-arm64]
14
15
15
16
steps :
16
17
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
build :
22
- runs-on : ubuntu-latest
22
+ runs-on : ${{ matrix.runner }}
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
26
- platform :
27
- - linux/amd64
28
- - linux/arm64
26
+ include :
27
+ - platform : linux/amd64
28
+ runner : ubuntu-latest
29
+ - platform : linux/arm64
30
+ runner : ubuntu-24.04-arm64
29
31
steps :
30
32
-
31
33
name : Prepare
41
43
uses : docker/metadata-action@v5
42
44
with :
43
45
images : ${{ env.REGISTRY_IMAGE }}
44
- -
45
- name : Set up QEMU
46
- uses : docker/setup-qemu-action@v3
47
46
-
48
47
name : Set up Docker Buildx
49
48
uses : docker/setup-buildx-action@v3
You can’t perform that action at this time.
0 commit comments