Skip to content

Commit

Permalink
Drop support for Node < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
appurva21 committed Apr 16, 2024
1 parent e3ab7ea commit 02fe24c
Show file tree
Hide file tree
Showing 4 changed files with 9,724 additions and 1,932 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'

- name: Install
Expand All @@ -38,10 +38,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
cache: 'npm'

- name: Install
Expand All @@ -56,11 +56,11 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10, 12]
node-version: [16, 18]
os: [ubuntu-latest, windows-latest]
include:
- coverage: true
node-version: 16
node-version: 18
os: ubuntu-latest

steps:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.yaml
@@ -1,6 +1,8 @@
unreleased:
breaking changes:
- Dropped support for Node < v16
chores:
- Add GitHub CI and remove Travis
- Added GitHub CI and remove Travis

2.1.1:
date: 2022-07-12
Expand Down

0 comments on commit 02fe24c

Please sign in to comment.