File tree Expand file tree Collapse file tree 5 files changed +18
-15
lines changed Expand file tree Collapse file tree 5 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 1616
1717 steps :
1818 - uses : actions/checkout@v4
19- - uses : actions/setup-node@v3
19+ - uses : actions/setup-node@v4
2020 with :
21- node-version : 18
21+ node-version : 20
2222 - run : npm ci
2323 - run : npm run lint
2424 - run : npm run build
Original file line number Diff line number Diff line change 2323 - uses : actions/checkout@v4
2424 - uses : actions/setup-node@v3
2525 with :
26- node-version : 18
26+ node-version : 20
2727 - run : npm ci
2828 - run : npm run build
2929
4747 name : Chromium_Build_WithoutKatex_${{ steps.current-time.outputs.formattedTime }}
4848 path : build/chromium-without-katex-and-tiktoken/*
4949
50- - uses : actions/upload-artifact@v3
50+ - uses : actions/upload-artifact@v4
5151 with :
5252 name : Firefox_Build_WithoutKatex_${{ steps.current-time.outputs.formattedTime }}
5353 path : build/firefox-without-katex-and-tiktoken/*
Original file line number Diff line number Diff line change @@ -40,11 +40,14 @@ jobs:
4040 git commit -am "release v${{ env.VERSION }}"
4141 git push
4242
43- - uses : actions/setup-node@v3
43+ - uses : actions/setup-node@v4
4444 with :
45- node-version : 18
45+ node-version : 20
4646 - run : npm ci
4747
48+ - uses : actions/setup-python@v4
49+ with :
50+ python-version : ' 3.10' # for appdmg
4851 - uses : maxim-lobanov/setup-xcode@v1
4952 with :
5053 xcode-version : 14.2
Original file line number Diff line number Diff line change 1010
1111 steps :
1212 - uses : actions/checkout@v4
13- - uses : actions/setup-node@v3
13+ - uses : actions/setup-node@v4
1414 with :
15- node-version : 16
15+ node-version : 20
1616 - run : npm ci
1717 - run : npm run verify
Original file line number Diff line number Diff line change @@ -298,18 +298,18 @@ function generateWebpackCallback(finishOutputFunc) {
298298async function build ( ) {
299299 await deleteOldDir ( )
300300 if ( isProduction && ! isAnalyzing ) {
301- await runWebpack (
302- true ,
303- false ,
304- generateWebpackCallback ( ( ) => finishOutput ( '-without-katex' ) ) ,
305- )
306- await new Promise ( ( r ) => setTimeout ( r , 5000 ) )
301+ // await runWebpack(
302+ // true,
303+ // false,
304+ // generateWebpackCallback(() => finishOutput('-without-katex')),
305+ // )
306+ // await new Promise((r) => setTimeout(r, 5000))
307307 await runWebpack (
308308 true ,
309309 true ,
310310 generateWebpackCallback ( ( ) => finishOutput ( '-without-katex-and-tiktoken' ) ) ,
311311 )
312- await new Promise ( ( r ) => setTimeout ( r , 5000 ) )
312+ await new Promise ( ( r ) => setTimeout ( r , 10000 ) )
313313 }
314314 await runWebpack (
315315 false ,
You can’t perform that action at this time.
0 commit comments