Skip to content

Commit

Permalink
fix(engines): support node >= 18
Browse files Browse the repository at this point in the history
  • Loading branch information
galenhuntington authored and JamieMason committed Nov 6, 2023
1 parent 09f846d commit 5c18d6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
name: verify

on:
pull_request:
push:
branches: [master]
pull_request_target:

jobs:
all:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: 16.x
node-version: 20.x

- name: Install
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"typescript": "5.1.6"
},
"engines": {
"node": "^18.0.0"
"node": ">=18"
},
"files": [
"dist",
Expand Down

0 comments on commit 5c18d6c

Please sign in to comment.