- Notifications
You must be signed in to change notification settings - Fork38
chore: fix macOS build (#68)#151
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| name:CI | |
| on:[push, pull_request] | |
| permissions:{} | |
| jobs: | |
| windows: | |
| name:Windows | |
| runs-on:windows-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| with: | |
| persist-credentials:false | |
| -uses:actions/setup-node@v4 | |
| with: | |
| node-version:22 | |
| -run:npm ci | |
| -run:npm test | |
| linux: | |
| name:Linux | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| with: | |
| persist-credentials:false | |
| -uses:actions/setup-node@v4 | |
| with: | |
| node-version:22 | |
| -run:sudo apt install -y libx11-dev libxkbfile-dev | |
| -run:npm ci | |
| -run:npm test | |
| macos: | |
| name:macOS | |
| runs-on:macos-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| with: | |
| persist-credentials:false | |
| -uses:actions/setup-node@v4 | |
| with: | |
| node-version:22 | |
| # https://github.com/nodejs/node-gyp/issues/2869 | |
| -run:python3 -m venv .venv && source .venv/bin/activate && python3 -m pip install setuptools | |
| -run:npm ci | |
| -run:npm test |