From 5c269af2cbfc3bd18ae40046d234b9a0161d66a2 Mon Sep 17 00:00:00 2001 From: Alexey Kasyanchuk Date: Sat, 25 Jun 2022 22:28:02 +0300 Subject: [PATCH] fix(ci): restore installation on ci --- .appveyor.yml | 2 +- .circleci/config.yml | 2 +- .github/workflows/build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 8cef78f..875eb3b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,7 +9,7 @@ cache: install: - ps: Install-Product node 14 x64 - - npm install + - npm install --force build_script: - npm test diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c15695..bbefe2a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,7 @@ jobs: # fallback to using the latest cache if no exact match is found - v2-dependencies- - - run: npm install + - run: npm install --force - save_cache: paths: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52954ec..51e0719 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: with: node-version: ${{ matrix.node_version }} architecture: ${{ matrix.architecture }} - - run: npm install + - run: npm install --force - run: npm run postinstall - run: npm run prebuild - run: npm run buildweb