File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -703,6 +703,11 @@ jobs:
703
703
cd dashboard
704
704
npm run build
705
705
cd ..
706
+ - name : Build Devtools
707
+ run : |
708
+ cd dashboard
709
+ npm run devtools
710
+ cd ..
706
711
707
712
developer :
708
713
runs-on : ${{ matrix.os }}-latest
Original file line number Diff line number Diff line change @@ -176,10 +176,10 @@ lib-pyreverse:
176
176
open pyreverse.png
177
177
178
178
devtools :
179
- pushd dashboard && npm run devtools && popd
179
+ pushd dashboard && npm install && npm run devtools && popd
180
180
181
181
dashboard :
182
- pushd dashboard && npm run build && popd
182
+ pushd dashboard && npm install && npm run build && popd
183
183
184
184
dashboard-clean :
185
185
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 () {
31
31
}
32
32
33
33
const chromeDevTools = path . dirname (
34
- require . resolve ( 'chrome-devtools-frontend/front_end/inspector.json ' )
34
+ require . resolve ( 'chrome-devtools-frontend/front_end/visibility.gni ' )
35
35
)
36
36
37
37
console . log ( 'Destination folder: ' + destinationFolderPath )
You can’t perform that action at this time.
0 commit comments