Skip to content

Commit d8afb72

Browse files
committed
Fix GitHub Actions
1 parent 9866d4e commit d8afb72

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/codeql.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/lint.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)