Skip to content

Commit

Permalink
build(nodejs): remove 14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcabrera committed May 2, 2023
1 parent 3a00958 commit 4966207
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

0 comments on commit 4966207

Please sign in to comment.