Skip to content

Commit

Permalink
Raise the minimum Node.js version to v18
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Nov 12, 2023
1 parent 33a779a commit 37a8f0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,14 @@ jobs:
fail-fast: false
matrix:
node-version:
- 14
- 16
- 18
- 20
- latest
architecture:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn test
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"lint": "eslint ."
},
"engines": {
"node": ">=14"
"node": ">=18"
}
}

0 comments on commit 37a8f0e

Please sign in to comment.