From 00ae5a1a1fb95324b5e7c4d79d33971955ba11c2 Mon Sep 17 00:00:00 2001 From: Dolan Date: Mon, 13 Jun 2022 19:02:40 +0100 Subject: [PATCH] Force dependency install --- .github/workflows/default.yml | 8 ++++---- .github/workflows/demos.yml | 4 ++-- .github/workflows/github-pages.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 042d1a0df2..5fb10bde82 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Build run: npm run build - name: Archive Production Artifact @@ -30,7 +30,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Test run: npm run test.coverage - name: Codecov @@ -45,7 +45,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Lint run: npm run lint prettier: @@ -55,6 +55,6 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Prettier run: npm run style diff --git a/.github/workflows/demos.yml b/.github/workflows/demos.yml index f2a2ec6ade..90968eef2a 100644 --- a/.github/workflows/demos.yml +++ b/.github/workflows/demos.yml @@ -15,7 +15,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Build run: npm run build - name: Archive Production Artifact @@ -31,7 +31,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Download Artifact uses: actions/download-artifact@master with: diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 17a3ac583e..3a07927b0b 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Build 🔧 run: | npm run typedoc @@ -30,7 +30,7 @@ jobs: - name: Checkout Repo 🛎️ uses: actions/checkout@master - name: Install Dependencies - run: npm ci + run: npm ci --force - name: Download Artifact uses: actions/download-artifact@master with: