Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(RPT-2833): update to node 16 #46

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .drone/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ platform:
arch: amd64

build: &build
image: node:fermium
image: node:gallium
pull: default
environment:
NPM_TOKEN:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile --non-interactive
- run: yarn test
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/fermium
lts/gallium
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@meltwater/jackalambda",
"version": "1.13.7",
"version": "1.13.8-0",
"description": "Mythical lambda creature",
"main": "index.js",
"module": "lib/index.js",
Expand Down Expand Up @@ -52,7 +52,7 @@
"report": "nyc report"
},
"engines": {
"node": ">=12.13.0"
"node": ">=16.20.2"
},
"resolutions": {
"aws-sdk": "2.771.0"
Expand Down Expand Up @@ -84,7 +84,7 @@
"npm-run-all": "^4.1.2",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"serverless": "^2.1.1",
"serverless": "3.0.1",
"serverless-offline": "^6.1.2",
"testdouble": "^3.16.1"
}
Expand Down
3 changes: 1 addition & 2 deletions serverless.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
---
service: jackalambda

frameworkVersion: "^2.0.0"
frameworkVersion: "3.0.1"

plugins:
- serverless-offline

provider:
name: aws
runtime: nodejs12.x
region: ${env:AWS_DEFAULT_REGION, 'eu-west-1'}
stage: ${opt:stage, env:SERVERLESS_STAGE, 'staging'}
logRetentionInDays: 30
Expand Down
Loading
Loading