File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ jobs:
212212 - name : Clean lock files because the newly generated package file will superseed the locks
213213 run : |
214214 find . -name "packages.lock.json" -type f -exec rm -f {} \;
215-
215+
216+ - name : Set up Node.js so we have gulp for retrieving TEL Frontend Css
217+ uses : actions/setup-node@v4
218+ with :
219+ node-version : ' 20'
220+
221+ - name : Install npm packages so we have gulp for retrieving TEL Frontend Css
222+ working-directory : ./Package.BlazorComponentLibrary
223+ run : npm ci
224+ # CI is an install with adhering to package-lock
225+
216226 - name : Build BlazorComponentLibrary (it publishes on build)
217227 run : |
218228 dotnet build Package.BlazorComponentLibrary -c Release \
You can’t perform that action at this time.
0 commit comments