From c3a0e7c96bc3a306efd3a9c956cd1b5fa0e2c45b Mon Sep 17 00:00:00 2001 From: Danilo Woznica Date: Sun, 12 Mar 2023 11:52:41 +0000 Subject: [PATCH] fix: release script (#306) --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 997ad649..042f61a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - name: Install dependencies if: steps.cache-node_modules.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --force - name: Lint run: npm run lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0605575..3216b58c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - name: Install dependencies if: steps.cache-node_modules.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --force - name: Lint run: npm run lint @@ -63,7 +63,7 @@ jobs: - name: Install dependencies if: steps.cache-node_modules.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --force - name: Build env: @@ -101,7 +101,7 @@ jobs: - name: Install dependencies if: steps.cache-node_modules.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --force - name: Build storybook run: npm run build:docs