Skip to content

Commit

Permalink
build(nodejs): remove 14 support (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcabrera authored May 2, 2023
1 parent fc595b3 commit 26dc5af
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
Expand Down
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 16+](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)
* And if you plan on making container contributions you may want to setup
- [Docker](https://docs.docker.com/engine/installation/) or
- [Podman](https://github.com/containers/podman), Homebrew can be used for the install `$ brew install podman`, [Easy setup directions here](https://marcusnoble.co.uk/2021-09-01-migrating-from-docker-to-podman/)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ a delay to see how your codebase will handle loading scenarios with a balls slow
The basic requirements:
* [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.
- [Docker](https://docs.docker.com/engine/installation/)
- [Podman](https://github.com/containers/podman), Homebrew can be used for the install `$ brew install podman`, [Easy setup directions here](https://marcusnoble.co.uk/2021-09-01-migrating-from-docker-to-podman/)


## Use

Generate a "happy path" mock server from [apidoc](http://apidocjs.com/) `@apiSuccessExample` annotations. Once the
server is setup correctly you should be able update your code comments/annotations and have the mock(s) update with a
server is set up correctly you should be able to update your code comments/annotations and have the mock(s) update with a
browser refresh.

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

0 comments on commit 26dc5af

Please sign in to comment.