We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83c0a7d commit f469dc8Copy full SHA for f469dc8
.github/workflows/ci.yml
@@ -155,11 +155,13 @@ jobs:
155
steps:
156
- name: Checkout repository # checkout the repository
157
uses: actions/[email protected]
158
- - name: Install Node.js
+ - name: Install Node.js using NVM
159
run: |
160
- apk update
161
- apk add --no-cache nodejs=14 npm
162
- # Verify installation
+ wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
+ export NVM_DIR="$HOME/.nvm"
+ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
163
+ nvm install 14
164
+ nvm use 14
165
node -v
166
npm -v
167
# caching the maven packages to speed up the build process.
0 commit comments