Supressing npm warnings in build process to avoid failure of the pipeline erroneously.

This commit is contained in:
Alex Williams
2024-06-22 11:14:25 +01:00
parent 2cb3dc02ae
commit c281cb8490
2 changed files with 6 additions and 6 deletions

View File

@@ -29,11 +29,11 @@ jobs:
cd coriolis-data
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
npm install
npm install 2>&1
npm start
cd ../coriolis
npm install
npm run build
npm install 2>&1
npm run build 2>&1
- name: Deploy the code
shell: bash
run: |

View File

@@ -34,11 +34,11 @@ jobs:
cd coriolis-data
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
npm install
npm install 2>&1
npm start
cd ../coriolis
npm install
npm run build
npm install 2>&1
npm run build 2>&1
- name: Deploy the code
shell: bash
run: |