File tree Expand file tree Collapse file tree 3 files changed +20
-10
lines changed
Expand file tree Collapse file tree 3 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ jobs:
1111 runs-on : ubuntu-latest
1212
1313 steps :
14- - uses : actions/checkout@v4
15- - name : Use Node.js 18.x
14+ - name : Checkout
15+ uses : actions/checkout@v4
16+ with :
17+ submodules : ' recursive'
18+
19+ - name : Use Node.js 23.x
1620 uses : actions/setup-node@v4
1721 with :
18- node-version : 18 .x
22+ node-version : 23 .x
1923 cache : npm
2024
2125 - name : Build Firefox
@@ -24,12 +28,12 @@ jobs:
2428 uses : actions/upload-artifact@v4
2529 with :
2630 name : firefox
27- path : dist .zip
31+ path : artifacts/firefox .zip
2832
2933 - name : Build Chrome
3034 run : make build-chrome
3135 - name : Upload artifact
3236 uses : actions/upload-artifact@v4
3337 with :
3438 name : chrome
35- path : dist .zip
39+ path : artifacts/chrome .zip
Original file line number Diff line number Diff line change @@ -20,17 +20,19 @@ jobs:
2020 steps :
2121 - name : Checkout
2222 uses : actions/checkout@v4
23+ with :
24+ submodules : ' recursive'
2325
2426 - name : Initialize CodeQL
2527 uses : github/codeql-action/init@v3
2628 with :
2729 languages : javascript, typescript
2830 queries : +security-and-quality
2931
30- - name : Use Node.js 18 .x
32+ - name : Use Node.js 23 .x
3133 uses : actions/setup-node@v4
3234 with :
33- node-version : 18 .x
35+ node-version : 23 .x
3436 cache : npm
3537 - run : make build-chrome
3638
Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ jobs:
1111 runs-on : ubuntu-latest
1212
1313 steps :
14- - uses : actions/checkout@v4
15- - name : Use Node.js 18.x
14+ - name : Checkout
15+ uses : actions/checkout@v4
16+ with :
17+ submodules : ' recursive'
18+
19+ - name : Use Node.js 23.x
1620 uses : actions/setup-node@v4
1721 with :
18- node-version : 18 .x
22+ node-version : 23 .x
1923 cache : npm
2024
2125 - name : Install dependencies
You can’t perform that action at this time.
0 commit comments