this should *actually* work

This commit is contained in:
Essem 2022-11-11 12:31:21 -06:00
parent ae929b922e
commit 90e2ee1e9f
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
1 changed files with 7 additions and 6 deletions

View File

@ -15,18 +15,19 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.2
with:
version: 7
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: sudo apt install libvips-dev libmagick++-dev
run: sudo apt update && sudo apt install -y cmake libvips-dev libmagick++-dev
- name: Build
run: pnpm install --config.strict-peer-dependencies=false && pnpm run build
run: pnpm install --frozen-lockfile && pnpm run build
darwin:
runs-on: macos-latest