Skip to content

Commit 5c18d6c

Browse files
galenhuntingtonJamieMason
authored andcommitted
fix(engines): support node >= 18
1 parent 09f846d commit 5c18d6c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
name: verify
22

33
on:
4+
pull_request:
45
push:
5-
branches: [master]
6-
pull_request_target:
76

87
jobs:
98
all:
109
runs-on: ubuntu-latest
1110

1211
steps:
13-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1413

15-
- uses: actions/setup-node@v2
14+
- uses: actions/setup-node@v3
1615
with:
1716
cache: yarn
18-
node-version: 16.x
17+
node-version: 20.x
1918

2019
- name: Install
2120
run: yarn install --frozen-lockfile

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"typescript": "5.1.6"
4545
},
4646
"engines": {
47-
"node": "^18.0.0"
47+
"node": ">=18"
4848
},
4949
"files": [
5050
"dist",

0 commit comments

Comments
 (0)