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: