Skip to content

Commit

Permalink
Use correct node version
Browse files Browse the repository at this point in the history
  • Loading branch information
naglepuff committed Jan 20, 2025
1 parent 9c9386d commit 5462e87
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,10 @@ jobs:
check_release:
docker:
- image: girder/tox-and-node
parameters:
node:
type: string
default: v20
steps:
- checkout
- run:
Expand All @@ -307,6 +311,13 @@ jobs:
- run:
name: Install python packages
command: pip install setuptools_scm twine
- run:
name: Switch node versions
command: |
nvm install << parameters.node >>
nvm alias default << parameters.node >>
NODE_DIR=$(dirname $(which node))
echo "export PATH=$NODE_DIR:\$PATH" >> $BASH_ENV
- run:
name: Check node versions
command: |
Expand Down

0 comments on commit 5462e87

Please sign in to comment.