fix(ci): remove unused flags
This commit is contained in:
parent
95e5d13bba
commit
1ebf042575
4 changed files with 8 additions and 8 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -40,7 +40,7 @@ jobs:
|
|||
cache: 'pnpm'
|
||||
|
||||
- name: Install NPM Dependencies
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
@ -97,7 +97,7 @@ jobs:
|
|||
cache-node_modules-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
|
||||
|
||||
- name: Install NPM Dependencies
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
@ -155,7 +155,7 @@ jobs:
|
|||
cache-node_modules-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
|
||||
|
||||
- name: Install NPM Dependencies
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
@ -203,7 +203,7 @@ jobs:
|
|||
cache-node_modules-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
|
||||
|
||||
- name: Install NPM Dependencies
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
@ -252,7 +252,7 @@ jobs:
|
|||
cache-node_modules-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
|
||||
|
||||
- name: Install NPM Dependencies
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
|
2
.github/workflows/format.yml
vendored
2
.github/workflows/format.yml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
|||
node-version: 16
|
||||
cache: 'pnpm'
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile --ignore-engines
|
||||
run: pnpm install
|
||||
env:
|
||||
CI: true
|
||||
- name: Format code
|
||||
|
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -51,7 +51,7 @@ jobs:
|
|||
|
||||
- name: Install NPM Dependencies
|
||||
if: steps.cache-npm.outputs.cache-hit != 'true'
|
||||
run: pnpm install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
|
||||
run: pnpm install --prefer-offline --registry https://registry.npmjs.org
|
||||
env:
|
||||
CI: true
|
||||
|
||||
|
|
2
.github/workflows/nightly.yml
vendored
2
.github/workflows/nightly.yml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
|||
node-version: 16
|
||||
cache: 'pnpm'
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile --ignore-engines --ignore-scripts
|
||||
run: pnpm install --ignore-scripts
|
||||
- name: Collect stats
|
||||
run: node scripts/stats/index.js
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue