Skip to content

Commit 83c0a7d

Browse files
committed
chore: Update Node.js version to 14 and ins
tall dependencies
1 parent 1c4f996 commit 83c0a7d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,13 @@ jobs:
155155
steps:
156156
- name: Checkout repository # checkout the repository
157157
uses: actions/[email protected]
158-
- name: Set up Node.js # setting up the node.js environment
159-
uses: actions/[email protected]
160-
with:
161-
node-version: '16'
158+
- name: Install Node.js
159+
run: |
160+
apk update
161+
apk add --no-cache nodejs=14 npm
162+
# Verify installation
163+
node -v
164+
npm -v
162165
# caching the maven packages to speed up the build process.
163166
# Link to the documentation - https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows
164167
- name: Cache Maven packages

0 commit comments

Comments
 (0)