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
|
- 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
|
||||||
|
|
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue