Skip to content

Commit cc16b46

Browse files
committed
Update to Node 14
1 parent aedeff5 commit cc16b46

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33

44
name: Node.js CI
55

6-
on:
7-
push:
8-
branches: [ master ]
9-
pull_request:
10-
branches: [ master ]
6+
on: [push, pull_request]
117

128
jobs:
139
build:
@@ -16,7 +12,7 @@ jobs:
1612

1713
strategy:
1814
matrix:
19-
node-version: [12.x]
15+
node-version: [12.x, 14.x]
2016

2117
steps:
2218
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- Lambda timeout increased from default (6 seconds) to 10 seconds
1515
- Improve CI workflow (@dashmug)
1616
- Update to Sharp 0.27.2
17+
- Update Lambda runtime to Node 14
1718

1819
### Fixed
1920
- Fix potential issue processing font expectations (@tyrauber)

serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ service: ${self:custom.settings.serviceName}
22

33
provider:
44
name: aws
5-
runtime: nodejs12.x
5+
runtime: nodejs14.x
66
timeout: 10
77
stage: ${opt:stage,'dev'}
88
region: ${self:custom.settings.region}

0 commit comments

Comments
 (0)