Skip to content

Commit

Permalink
fix node-gyp build
Browse files Browse the repository at this point in the history
  • Loading branch information
preaction committed May 23, 2024
1 parent 5e7400f commit 3ad82c9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ad82c9

Please sign in to comment.