diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-09-18 01:02:32 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-09-18 01:02:32 +0200 |
commit | cd087af0f7641312047551229ac1d58da9024802 (patch) | |
tree | 681485ab39394ee6fad6ee4a254bab8669b1b1d7 | |
parent | c468e59fb9e9c71833165358f96cbc1ae1f18a83 (diff) | |
download | Viper-cd087af0f7641312047551229ac1d58da9024802.tar.gz Viper-cd087af0f7641312047551229ac1d58da9024802.zip |
refactor: remove --force option from `npm install`
Issue has been fixed in #144.
-rw-r--r-- | .github/workflows/dev_builds.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release_builds.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml index e1c2598..1951ee7 100644 --- a/.github/workflows/dev_builds.yml +++ b/.github/workflows/dev_builds.yml @@ -16,7 +16,7 @@ jobs: with: node-version: 16 - name: Install dependencies - run: npm install --force + run: npm install - name: Create builds run: npm run build:windows - name: Archive production artifacts @@ -36,7 +36,7 @@ jobs: with: node-version: 16 - name: Install dependencies - run: npm install --force + run: npm install - name: Create builds run: npm run build:linux - name: Archive production artifacts diff --git a/.github/workflows/release_builds.yml b/.github/workflows/release_builds.yml index 0880e81..bc3dac6 100644 --- a/.github/workflows/release_builds.yml +++ b/.github/workflows/release_builds.yml @@ -14,7 +14,7 @@ jobs: with: node-version: 16 - name: Install dependencies - run: npm install --force + run: npm install - name: Create builds run: npm run build:windows - name: Upload production artifacts to release @@ -37,7 +37,7 @@ jobs: with: node-version: 16 - name: Install dependencies - run: npm install --force + run: npm install - name: Create builds run: npm run build:linux - name: Upload production artifacts to release |