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 #247

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
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