CI workaround

This commit is contained in:
Essem 2022-06-14 00:01:14 -05:00
parent 046b1d7f28
commit c7216cfe13
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: sudo apt install libvips-dev libmagick++-dev
- name: Build
run: npm install && npm run build
run: npm install --legacy-peer-deps && npm run build
win32:
runs-on: windows-latest
@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: choco install imagemagick -PackageParameters InstallDevelopmentHeaders=true
- name: Build
run: npm install && npm run build
run: npm install --legacy-peer-deps && npm run build
darwin:
runs-on: macos-latest
@ -44,4 +44,4 @@ jobs:
- name: Install dependencies
run: brew install imagemagick vips
- name: Build
run: npm install && npm run build
run: npm install --legacy-peer-deps && npm run build

View File

@ -78,7 +78,7 @@ jobs:
# uses a compiled language
- run: |
npm install
npm install --legacy-peer-deps
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1