From 1ebf042575aaf269be7e2f2e3b4415d20dbc9b72 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Tue, 18 Jan 2022 16:17:47 -0600 Subject: [PATCH] fix(ci): remove unused flags --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/format.yml | 2 +- .github/workflows/main.yml | 2 +- .github/workflows/nightly.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7b939e11..abaf5beae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 23b229557..9bdb6a077 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 46709f702..01736c41b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3cf14055b..e00a6b3a5 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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: