CI workaround
This commit is contained in:
parent
046b1d7f28
commit
c7216cfe13
2 changed files with 4 additions and 4 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue