Skip to content

Commit 2bb379c

Browse files
committed
workflows update
1 parent 342f11a commit 2bb379c

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/test-xpm.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,17 @@ jobs:
125125
# Verify removal
126126
which brew || echo "Homebrew successfully removed"
127127
128+
- name: 'Setup Node.js'
129+
uses: actions/setup-node@v4
130+
with:
131+
node-version: '20'
132+
check-latest: true
133+
134+
- name: 'Verify Node.js and npm'
135+
run: |
136+
echo "$(which node): $(node --version)"
137+
echo "$(which npm): $(npm --version)"
138+
128139
- name: 'Clean working area' # Mandatory for self-hosted runners.
129140
run: |
130141
chmod -Rf a+w * || true
@@ -186,6 +197,17 @@ jobs:
186197
# Verify removal
187198
which brew || echo "Homebrew successfully removed"
188199
200+
- name: 'Setup Node.js'
201+
uses: actions/setup-node@v4
202+
with:
203+
node-version: '20'
204+
check-latest: true
205+
206+
- name: 'Verify Node.js and npm'
207+
run: |
208+
echo "$(which node): $(node --version)"
209+
echo "$(which npm): $(npm --version)"
210+
189211
- name: 'Clean working area' # Mandatory for self-hosted runners.
190212
run: |
191213
chmod -Rf a+w * || true

0 commit comments

Comments
 (0)