Skip to content

Commit

Permalink
ci(config.yml): fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishdholakia committed Feb 6, 2025
1 parent 58042b9 commit a1306e5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,15 @@ jobs:
working_directory: ~/project
steps:
- checkout
- node/install-packages
- run:
name: Install and setup Node
command: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install 18.17.0
nvm use 18.17.0
nvm alias default 18.17.0
- run:
name: Install Docker CLI (In case it's not already installed)
command: |
Expand Down

0 comments on commit a1306e5

Please sign in to comment.