File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -703,6 +703,11 @@ jobs:
703703 cd dashboard
704704 npm run build
705705 cd ..
706+ - name : Build Devtools
707+ run : |
708+ cd dashboard
709+ npm run devtools
710+ cd ..
706711
707712 developer :
708713 runs-on : ${{ matrix.os }}-latest
Original file line number Diff line number Diff line change @@ -176,10 +176,10 @@ lib-pyreverse:
176176 open pyreverse.png
177177
178178devtools :
179- pushd dashboard && npm run devtools && popd
179+ pushd dashboard && npm install && npm run devtools && popd
180180
181181dashboard :
182- pushd dashboard && npm run build && popd
182+ pushd dashboard && npm install && npm run build && popd
183183
184184dashboard-clean :
185185 if [[ -d dashboard/public ]]; then rm -rf dashboard/public; fi
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function setUpDevTools () {
3131 }
3232
3333 const chromeDevTools = path . dirname (
34- require . resolve ( 'chrome-devtools-frontend/front_end/inspector.json ' )
34+ require . resolve ( 'chrome-devtools-frontend/front_end/visibility.gni ' )
3535 )
3636
3737 console . log ( 'Destination folder: ' + destinationFolderPath )
You can’t perform that action at this time.
0 commit comments