From cd087af0f7641312047551229ac1d58da9024802 Mon Sep 17 00:00:00 2001 From: Remy Raes Date: Sun, 18 Sep 2022 01:02:32 +0200 Subject: refactor: remove --force option from `npm install` Issue has been fixed in #144. --- .github/workflows/dev_builds.yml | 4 ++-- .github/workflows/release_builds.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.2.3