From 3ad82c965d61a67f1603875a61ad2b4d14b185af Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Wed, 22 May 2024 20:06:38 -0500 Subject: [PATCH] fix node-gyp build --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e105390..c4576c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,16 @@ jobs: - name: Install Node.js, NPM and Yarn uses: actions/setup-node@v1 with: - node-version: 19 + node-version: 20 + + - name: Install other prereqs + run: | + echo "$RUNNER_OS"; + if [ "$RUNNER_OS" == "macOS" ]; then + brew install cairo + brew install pango + fi + shell: bash - name: Install dependencies run: npm install && npm run install