Skip to content

Commit

Permalink
GH Action: Move nvm install to happen after apt install dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
realazthat committed Jun 25, 2024
1 parent 0cbd37e commit 73d383c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version.gh }}
- name: Install nvm
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- name: Set up .python-version
run: |
echo "${{ matrix.python-version.file }}"
Expand All @@ -55,6 +52,9 @@ jobs:
run: |
# See project/.github/dependencies.yml for a list of dependencies.
sudo apt-get update && sudo apt-get install -y ${APT_DEPS}
- name: Install nvm
run: |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- name: Run everything
run: |
bash scripts/pre.sh

0 comments on commit 73d383c

Please sign in to comment.