updated .cirrus.yml

This commit is contained in:
Lorenzo Pichilli 2021-02-10 14:19:34 +01:00
parent 635d54bbc1
commit 7f17f71650
2 changed files with 3 additions and 2 deletions

View File

@ -73,8 +73,7 @@ task:
install_node_script: install_node_script:
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
- export NVM_DIR="$HOME/.nvm" - export NVM_DIR="$HOME/.nvm"
- [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm - source "$NVM_DIR/nvm.sh" # This loads nvm
- [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
- nvm install node - nvm install node
- cd ./nodejs_server_test_auth_basic_and_ssl - cd ./nodejs_server_test_auth_basic_and_ssl
- npm install - npm install

View File

@ -24,6 +24,8 @@ jobs:
os: osx os: osx
osx_image: xcode12.3 osx_image: xcode12.3
before_script: before_script:
- pwd
- cd ./flutter_inappwebview
- cd ./nodejs_server_test_auth_basic_and_ssl - cd ./nodejs_server_test_auth_basic_and_ssl
- npm install - npm install
- cd .. - cd ..