Skip to content

Commit 9ba0084

Browse files
committed
BREAKING: Node 8, 10 and 12 support dropped
They might still work, but we're only testing v14-v18
1 parent be38edf commit 9ba0084

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: "12.x"
16+
node-version: 18
1717
- run: npm ci
1818
- run: npm run build --if-present
1919
- run: npm test

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
strategy:
99
matrix:
1010
node-version:
11-
- 12
1211
- 14
1312
- 16
13+
- 18
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Use Node.js ${{ matrix.node-version }}

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"name": "@openapi-contrib/openapi-schema-to-json-schema",
33
"version": "0.0.0-development",
44
"description": "Converts OpenAPI Schema Object to JSON Schema",
5-
"engines" : {
6-
"node" : ">=12"
7-
},
85
"main": "index.js",
96
"types": "index.d.ts",
107
"scripts": {

0 commit comments

Comments
 (0)