File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: 'npm install (with GITHUB_TOKEN to run postinstall step)'
4
4
runs :
5
5
using : ' composite'
6
6
steps :
7
- - run : npm ci --foreground-scripts --prefer-offline
7
+ - run : npm ci --foreground-scripts --prefer-offline --ignore-scripts
8
8
env :
9
9
npm_config_build_from_source : true
10
10
shell : bash
Original file line number Diff line number Diff line change @@ -717,6 +717,10 @@ jobs:
717
717
env :
718
718
VSC_JUPYTER_CI_TEST_GREP : ${{ matrix.tags }}
719
719
720
+ - name : Install playwright
721
+ run : npx playwright install
722
+ if : matrix.python != 'noPython' && matrix.os == 'ubuntu-latest' && matrix.jupyterConnection == 'web'
723
+
720
724
- name : Run Native Notebook with VSCode & Jupyter (web)
721
725
uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
722
726
with :
Original file line number Diff line number Diff line change @@ -73,12 +73,18 @@ extends:
73
73
addToPath : true
74
74
architecture : ' x64'
75
75
76
- - script : npm ci --foreground-scripts
76
+ - script : npm ci --foreground-scripts --ignore-scripts
77
77
displayName : npm ci
78
78
env :
79
79
npm_config_build_from_source : true
80
80
VSC_VSCE_TARGET : $(vsceTarget)
81
81
82
+ - script : npm run postinstall
83
+ displayName : npm postinstall
84
+ env :
85
+ npm_config_build_from_source : true
86
+ VSC_VSCE_TARGET : $(vsceTarget)
87
+
82
88
- script : npm run clean
83
89
displayName : Clean
84
90
Original file line number Diff line number Diff line change @@ -67,12 +67,18 @@ extends:
67
67
addToPath : true
68
68
architecture : ' x64'
69
69
70
- - script : npm ci --foreground-scripts
70
+ - script : npm ci --foreground-scripts --ignore-scripts
71
71
displayName : npm ci
72
72
env :
73
73
npm_config_build_from_source : true
74
74
VSC_VSCE_TARGET : $(vsceTarget)
75
75
76
+ - script : npm run postinstall
77
+ displayName : npm postinstall
78
+ env :
79
+ npm_config_build_from_source : true
80
+ VSC_VSCE_TARGET : $(vsceTarget)
81
+
76
82
- script : npm run clean
77
83
displayName : Clean
78
84
You can’t perform that action at this time.
0 commit comments