File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments