Skip to content

Commit

Permalink
Drop support for Node < 16 (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
appurva21 committed May 2, 2024
1 parent e3ab7ea commit 990b619
Show file tree
Hide file tree
Showing 7 changed files with 9,862 additions and 2,353 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Expand Up @@ -354,7 +354,6 @@
"jsdoc/check-param-names": "error",
"jsdoc/check-tag-names": "off",
"jsdoc/check-types": "off",
"jsdoc/newline-after-description": "error",
"jsdoc/require-description-complete-sentence": "off",
"jsdoc/require-example": "off",
"jsdoc/require-hyphen-before-param-description": "off",
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: '0 12 * * 0'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint
Expand All @@ -18,10 +22,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 +42,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 +60,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: 20
os: ubuntu-latest

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

2.1.1:
date: 2022-07-12
Expand Down

0 comments on commit 990b619

Please sign in to comment.