From 319e19cea5455696701b57611aee8b32e0d7d7e0 Mon Sep 17 00:00:00 2001 From: nukeop <12746779+nukeop@users.noreply.github.com> Date: Fri, 8 Mar 2024 22:42:08 +0100 Subject: [PATCH] Add setup tools installation for macOS --- .github/workflows/CI.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b9e22b84d3..cb3b719891 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -47,6 +47,10 @@ jobs: run: | echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append echo "C:\Program Files\Git\mingw64\libexec\git-core" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + - name: install setup tools + if: runner.os == 'macOS' + run: | + sudo -H pip install setuptools - run: npm ci - run: npm run lint - run: npm test