Skip to content

Commit

Permalink
fix(deps): conditionally use 18.20.0 for xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylachun committed Apr 29, 2024
1 parent 9911057 commit d8b86e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ jobs:
- run:
command: cd httpbin && gunicorn -b 0.0.0.0:80 httpbin:app -k gevent
background: true
- run: nvm alias default node
- when:
condition:
- equal: [ macos, << parameters.executor >> ]
steps:
- run: nvm install 18.20.0 && nvm alias default 18.20.0
- run:
name: Install Dependencies
command: yarn --frozen-lockfile
Expand Down

0 comments on commit d8b86e9

Please sign in to comment.