Skip to content

Commit 8ae9160

Browse files
committed
CI: Use Node.js 18
1 parent fa899ac commit 8ae9160

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/node.js.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-node@v3
15-
with:
16-
node-version: 16
17-
cache: 'npm'
18-
- run: npm ci
19-
- run: npm run prettier
20-
- run: npm run lint
21-
- run: npm run validate
22-
- run: npm test
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: 18
17+
cache: 'npm'
18+
- run: npm ci
19+
- run: npm run prettier
20+
- run: npm run lint
21+
- run: npm run validate
22+
- run: npm test

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
tags:
4-
- 'v*'
4+
- 'v*'
55

66
name: Release
77

@@ -18,7 +18,7 @@ jobs:
1818
- name: Use Node.js
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: 16
21+
node-version: 18
2222
- run: npm ci
2323
- run: npm run build
2424
- run: npx web-ext build --no-input=true --filename "${{ steps.set-filename.outputs.filename}}"

0 commit comments

Comments
 (0)