diff --git a/.github/workflows/check-linting.yml b/.github/workflows/check-linting.yml index 4070de7..5ab871c 100644 --- a/.github/workflows/check-linting.yml +++ b/.github/workflows/check-linting.yml @@ -26,7 +26,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: npm install + run: npm install --force - name: Run tests run: npm run lint-all diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 3e08ed1..36759e2 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -26,7 +26,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: npm install + run: npm install --force - name: Run linting run: npm run test