Skip to content

Commit 8eeb161

Browse files
committed
ci: ignore false positives (lodash, surge)
1 parent c06a583 commit 8eeb161

5 files changed

Lines changed: 17 additions & 7 deletions

File tree

.github/workflows/broken-links-scan.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@ jobs:
1717
- name: Enable Corepack
1818
run: corepack enable
1919
- name: Install dependencies
20-
run: NPQ_PKG_MGR=yarn npx npq install --immutable
20+
run: yes | npx npq install --immutable
21+
env:
22+
NPQ_PKG_MGR: yarn
2123
- run: yarn remark -r .remarkrc.nightly.mjs .

.github/workflows/docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,7 @@ jobs:
3636
- name: Enable Corepack
3737
run: corepack enable
3838
- name: Install dependencies
39-
run: NPQ_PKG_MGR=yarn npx npq install --immutable
39+
run: yes | npx npq install --immutable
40+
env:
41+
NPQ_PKG_MGR: yarn
4042
- run: yarn docs:lint

.github/workflows/rapid-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Enable Corepack
2828
run: corepack enable
2929
- name: Install dependencies
30-
run: npx npq install --immutable
30+
run: yes | npx npq install --immutable
3131
env:
3232
NPQ_PKG_MGR: yarn
3333
DETOX_DISABLE_POD_INSTALL: true
@@ -69,7 +69,8 @@ jobs:
6969
- name: Enable Corepack
7070
run: corepack enable
7171
- name: Install dependencies
72-
run: npx npq install --immutable
72+
run: echo y | npx npq install --immutable
73+
shell: bash
7374
env:
7475
NPQ_PKG_MGR: yarn
7576
DETOX_DISABLE_POD_INSTALL: true

.github/workflows/surge-purge.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- name: Enable Corepack
2020
run: corepack enable
2121
- name: Install dependencies
22-
run: NPQ_PKG_MGR=yarn npx npq install --immutable
22+
run: yes | npx npq install --immutable
23+
env:
24+
NPQ_PKG_MGR: yarn
2325
- name: Teardown old domains
2426
run: yarn zx scripts/purge_expired_domains.mjs --olderThan ${{ github.event.inputs.days || '10' }}
2527
env:

.github/workflows/website.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
run: corepack enable
2828
- name: Install and build
2929
working-directory: ./website
30+
env:
31+
NPQ_PKG_MGR: yarn
3032
run: |
31-
NPQ_PKG_MGR=yarn npx npq install
33+
yes | npx npq install
3234
yarn build
3335
gh-release:
3436
if: github.event_name != 'pull_request'
@@ -49,11 +51,12 @@ jobs:
4951
env:
5052
USE_SSH: true
5153
GIT_USER: git
54+
NPQ_PKG_MGR: yarn
5255
run: |
5356
git config --global user.email "mobile1@wix.com"
5457
git config --global user.name "mobilewix"
5558
cd website/
56-
NPQ_PKG_MGR=yarn npx npq install
59+
yes | npx npq install
5760
yarn build
5861
yarn docusaurus deploy
5962
performance:

0 commit comments

Comments
 (0)