Skip to content

Commit e25cbd9

Browse files
fix: resolve GitHub runner issues on MacOs (#1155)
1 parent 282dff1 commit e25cbd9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: "npm"
29+
30+
# workaround for issue #1154
31+
- name: Install setuptools on MacOs
32+
if: matrix.os == 'macos-latest'
33+
run: |
34+
sudo -H pip install setuptools
35+
2936
- name: Install
3037
run: npm ci
3138

0 commit comments

Comments
 (0)