Skip to content

Commit

Permalink
chore: drop node8, add node14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drops node v8.x support
  • Loading branch information
opichals committed Nov 25, 2020
1 parent c49a566 commit 4cb3e65
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ aliases:
- run: yarn test

jobs:
test-node14:
docker: [image: circleci/node:14]
<<: *test-steps

test-node12:
docker: [<<: *node12]
<<: *test-steps
Expand All @@ -40,10 +44,6 @@ jobs:
docker: [image: circleci/node:10]
<<: *test-steps

test-node8:
docker: [image: circleci/node:8]
<<: *test-steps

test-e2e-apib:
docker: [<<: *node12]
steps:
Expand Down Expand Up @@ -103,9 +103,9 @@ workflows:
jobs:
- format-check
- quality-checks
- test-node14
- test-node12
- test-node10
- test-node8
- test-e2e-apib
- test-e2e-openapi2
- smoke-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [8.x, 10.x, 12.x, 14.x]
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion packages/dredd-transactions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Compiles HTTP Transactions (Request-Response pairs) from an API description document",
"main": "index.js",
"engines": {
"node": ">= 8"
"node": ">=10"
},
"scripts": {
"prepack": "node ./scripts/prepack.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dredd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dredd": "bin/dredd"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"start": "npm run build -- --watch",
Expand Down

0 comments on commit 4cb3e65

Please sign in to comment.