Skip to content

Commit

Permalink
Raise 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 50d5919 commit 5486bb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,14 @@ jobs:
fail-fast: false
matrix:
node-version:
- 12
- 14
- 16
architecture:
- x64
- 18
- 20
- latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- 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 @@ -26,6 +26,6 @@
"mocha": "^9.1.1"
},
"engines": {
"node": ">=12"
"node": ">=18"
}
}

0 comments on commit 5486bb7

Please sign in to comment.