Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(nodejs): remove 14 support #59

Merged
merged 1 commit into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
branches: [ main ]
pull_request:
env:
COV_NODE_VERSION: 16
COV_NODE_VERSION: 18

jobs:
Integration-checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ commit messaging follow the format
```

### Build Requirements
To setup your work environment you'll need to use
* [NodeJS version 14+](https://nodejs.org/)
* [Yarn 1.22+](https://yarnpkg.com)
To set up your work environment you'll need to use
* [NodeJS](https://nodejs.org/)
* [Yarn](https://yarnpkg.com)

### Develop with testing
To start work
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Generate a changelog with [conventional commit types](https://www.conventionalco

## Requirements
The basic requirements:
* [NodeJS version 14+](https://nodejs.org/)
* [NodeJS version 16+](https://nodejs.org/)
* Optionally your system could be running
- [Yarn 1.22+](https://yarnpkg.com), otherwise NPM should be adequate.
- [Yarn](https://yarnpkg.com), otherwise NPM should be adequate.


## Use
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"history"
],
"engines": {
"node": ">=14.0.0"
"node": ">=16.0.0"
},
"files": [
"src/*.js"
Expand Down