File tree 5 files changed +18
-15
lines changed
5 files changed +18
-15
lines changed Original file line number Diff line number Diff line change 16
16
17
17
steps :
18
18
- uses : actions/checkout@v4
19
- - uses : actions/setup-node@v3
19
+ - uses : actions/setup-node@v4
20
20
with :
21
- node-version : 18
21
+ node-version : 20
22
22
- run : npm ci
23
23
- run : npm run lint
24
24
- run : npm run build
Original file line number Diff line number Diff line change 23
23
- uses : actions/checkout@v4
24
24
- uses : actions/setup-node@v3
25
25
with :
26
- node-version : 18
26
+ node-version : 20
27
27
- run : npm ci
28
28
- run : npm run build
29
29
47
47
name : Chromium_Build_WithoutKatex_${{ steps.current-time.outputs.formattedTime }}
48
48
path : build/chromium-without-katex-and-tiktoken/*
49
49
50
- - uses : actions/upload-artifact@v3
50
+ - uses : actions/upload-artifact@v4
51
51
with :
52
52
name : Firefox_Build_WithoutKatex_${{ steps.current-time.outputs.formattedTime }}
53
53
path : build/firefox-without-katex-and-tiktoken/*
Original file line number Diff line number Diff line change @@ -40,11 +40,14 @@ jobs:
40
40
git commit -am "release v${{ env.VERSION }}"
41
41
git push
42
42
43
- - uses : actions/setup-node@v3
43
+ - uses : actions/setup-node@v4
44
44
with :
45
- node-version : 18
45
+ node-version : 20
46
46
- run : npm ci
47
47
48
+ - uses : actions/setup-python@v4
49
+ with :
50
+ python-version : ' 3.10' # for appdmg
48
51
- uses : maxim-lobanov/setup-xcode@v1
49
52
with :
50
53
xcode-version : 14.2
Original file line number Diff line number Diff line change 10
10
11
11
steps :
12
12
- uses : actions/checkout@v4
13
- - uses : actions/setup-node@v3
13
+ - uses : actions/setup-node@v4
14
14
with :
15
- node-version : 16
15
+ node-version : 20
16
16
- run : npm ci
17
17
- run : npm run verify
Original file line number Diff line number Diff line change @@ -298,18 +298,18 @@ function generateWebpackCallback(finishOutputFunc) {
298
298
async function build ( ) {
299
299
await deleteOldDir ( )
300
300
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))
307
307
await runWebpack (
308
308
true ,
309
309
true ,
310
310
generateWebpackCallback ( ( ) => finishOutput ( '-without-katex-and-tiktoken' ) ) ,
311
311
)
312
- await new Promise ( ( r ) => setTimeout ( r , 5000 ) )
312
+ await new Promise ( ( r ) => setTimeout ( r , 10000 ) )
313
313
}
314
314
await runWebpack (
315
315
false ,
You can’t perform that action at this time.
0 commit comments