We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c820e commit 0e5f38cCopy full SHA for 0e5f38c
.github/workflows/gha.dist.yml
@@ -64,6 +64,14 @@ jobs:
64
sudo locale-gen en_AU.UTF-8
65
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
66
67
+ - name: Install NVM and Node # TODO: remove this step after https://github.com/moodlehq/moodle-plugin-ci/issues/309 is fixed
68
+ run: |
69
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
70
+ export NVM_DIR="$HOME/.nvm"
71
+ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
72
+ nvm install 20
73
+ nvm use 20
74
+
75
- name: Install moodle-plugin-ci
76
run: |
77
moodle-plugin-ci install --plugin ./plugin/lbplanner --db-host=127.0.0.1
0 commit comments