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 - name: Install dependencies
run: sudo apt install libvips-dev libmagick++-dev run: sudo apt install libvips-dev libmagick++-dev
- name: Build - name: Build
run: npm install && npm run build run: npm install --legacy-peer-deps && npm run build
win32: win32:
runs-on: windows-latest runs-on: windows-latest
@ -32,7 +32,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: choco install imagemagick -PackageParameters InstallDevelopmentHeaders=true run: choco install imagemagick -PackageParameters InstallDevelopmentHeaders=true
- name: Build - name: Build
run: npm install && npm run build run: npm install --legacy-peer-deps && npm run build
darwin: darwin:
runs-on: macos-latest runs-on: macos-latest
@ -44,4 +44,4 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: brew install imagemagick vips run: brew install imagemagick vips
- name: Build - 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 # uses a compiled language
- run: | - run: |
npm install npm install --legacy-peer-deps
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1 uses: github/codeql-action/analyze@v1