Skip to content

Commit 085566d

Browse files
authored
Update to only support LTS node versions (#356)
1 parent d1792c7 commit 085566d

File tree

5 files changed

+5
-11
lines changed

5 files changed

+5
-11
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [10.x, 12.x, 14.x, 16.x, 18.x]
15+
node-version: [14.x, 16.x, 18.x]
1616

1717
steps:
1818
- name: Check out repo

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:12
1+
FROM node:18
22

33
RUN mkdir -p /usr/src/app
44
WORKDIR /usr/src/app

app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
runtime: nodejs10
1+
runtime: nodejs18
22
instance_class: F4

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
"url": "https://github.com/nytimes/library/issues"
7272
},
7373
"engines": {
74-
"node": ">=10.x",
75-
"npm": ">=6.5.x"
74+
"node": ">=14.x",
75+
"npm": ">=6.14.x"
7676
},
7777
"homepage": "https://github.com/nytimes/library#readme"
7878
}

0 commit comments

Comments
 (0)