We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c070c5d commit 832950bCopy full SHA for 832950b
.github/workflows/ci.yml
@@ -41,6 +41,10 @@ jobs:
41
node: 16
42
host: x86
43
target: x86
44
+ - os: macos-m1
45
+ node: 16
46
+ host: arm64
47
+ target: arm64
48
name: ${{ matrix.os }} (node=${{ matrix.node }}, host=${{ matrix.host }}, target=${{ matrix.target }})
49
steps:
50
- uses: actions/checkout@v3
@@ -49,6 +53,10 @@ jobs:
53
node-version: ${{ matrix.node }}
54
architecture: ${{ matrix.host }}
51
55
56
+ - name: Add yarn (self-hosted)
57
+ if: matrix.os == 'macos-m1'
58
+ run: npm install -g yarn
59
+
52
60
- name: Add msbuild to PATH
61
uses: microsoft/setup-msbuild@v1.1
62
if: contains(matrix.os, 'windows')
0 commit comments