Skip to content

Commit

Permalink
Update to only support LTS node versions (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
afischer committed Mar 27, 2023
1 parent d1792c7 commit 085566d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x]

steps:
- name: Check out repo
Expand Down
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12
FROM node:18

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
runtime: nodejs10
runtime: nodejs18
instance_class: F4
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
"url": "https://github.com/nytimes/library/issues"
},
"engines": {
"node": ">=10.x",
"npm": ">=6.5.x"
"node": ">=14.x",
"npm": ">=6.14.x"
},
"homepage": "https://github.com/nytimes/library#readme"
}

0 comments on commit 085566d

Please sign in to comment.