Skip to content

Commit

Permalink
nvm removed
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu5 committed Mar 25, 2024
1 parent 31b90e8 commit e022c17
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
13 changes: 5 additions & 8 deletions .github/actions/nvm_use_npm_install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@ description: GitHub Action to use NVM and install Node dependencies
runs:
using: composite
steps:
- name: Use NVM to run Node v16
run: |-
nvm install v16.13.2
node -v
nvm alias default v16.13.2
nvm use v16.13.2
shell: bash
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: '16.13.2'
- name: Install Node dependencies
run: |-
node -v
npm install
shell: bash
shell: pwsh
6 changes: 1 addition & 5 deletions .github/actions/win_setup_python_env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,12 @@ runs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ inputs.python_version }}
# - name: Explicitly initialize conda
# run: conda init bash
# shell: bash
python-version: ${{ inputs.python_version }}
- name: Create 'kedro-viz' conda environment
run: conda create --name kedro-viz python=${{ inputs.python_version }} -y
shell: pwsh
- name: Install Kedro-Viz dependencies
run: |-
conda init pwsh
conda activate kedro-viz
pip install git+https://github.com/kedro-org/kedro@main
pip install -r package/test_requirements.txt -U
Expand Down

0 comments on commit e022c17

Please sign in to comment.