Skip to content

Commit

Permalink
Fixing node version for mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyars committed Sep 16, 2021
1 parent 5376f1d commit 2c91842
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,16 @@ jobs:
xcode: 11.3.0
steps:
- checkout
- run:
name: install node
command: |
set +e
touch $BASH_ENV
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
echo nvm install 14 >> $BASH_ENV
echo nvm alias default 14 >> $BASH_ENV
- run:
name: Install Dependencies
command: npm ci
Expand Down Expand Up @@ -229,24 +239,32 @@ workflows:
- maintenanceOutOfProcessImposters:
requires:
- build
- windows
- mac
filters:
branches:
only: master
- currentWithFileDB:
requires:
- build
- windows
- mac
filters:
branches:
only: master
- performance:
requires:
- build
- windows
- mac
filters:
branches:
only: master
- web:
requires:
- build
- windows
- mac
filters:
branches:
only: master
Expand Down

0 comments on commit 2c91842

Please sign in to comment.