File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
strategy :
18
18
matrix :
19
- node-version : [14.x, 18.x]
19
+ node-version : [18.x]
20
20
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
21
22
22
steps :
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v3
12
12
- uses : actions/setup-node@v3
13
13
with :
14
- node-version : 14
14
+ node-version : 18
15
15
- run : npm ci
16
16
- run : npm test
17
17
Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ const asyncLocalStorage = new AsyncLocalStorage();
15
15
16
16
const CORRELATION_KEY = '__X_POWERTOOLS_CORRELATION_IDS__' ;
17
17
18
- export const enableCorrelationIds = ( props ?: CorrelationProps ) => {
19
- return {
18
+ export const enableCorrelationIds = ( props ?: CorrelationProps ) => { return {
20
19
before : ( handler : middy . Request ) => {
21
20
if ( ! props || props . awsDefaults === true ) {
22
21
const event = handler . event as SupportedEventTypes ;
You can’t perform that action at this time.
0 commit comments