Skip to content

Commit

Permalink
Merge pull request #46 from binden-js/node20
Browse files Browse the repository at this point in the history
Perf!: Drop `Node.js` `<20.11.0` support
  • Loading branch information
vansergen authored Jan 28, 2024
2 parents db518fc + 1877cd5 commit aaa8fa3
Show file tree
Hide file tree
Showing 5 changed files with 1,720 additions and 2,758 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20, 21]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: ${{ matrix.node-version }}
check-latest: true

- name: Install dependencies
Expand All @@ -40,7 +44,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
check-latest: true

- name: Import GPG key
Expand Down
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx commitlint --edit $1
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
Loading

0 comments on commit aaa8fa3

Please sign in to comment.