Skip to content

Commit

Permalink
update defaultLambdas count
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Mar 6, 2024
1 parent 9cdd6ea commit f42e3be
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -64,10 +64,10 @@ jobs:
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand Down Expand Up @@ -107,10 +107,10 @@ jobs:
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand Down
37 changes: 20 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,49 +22,52 @@
},
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "3.6.5",
"@architect/inventory": "4.0.3",
"@architect/parser": "6.0.3",
"@architect/utils": "3.1.9",
"@architect/utils": "4.0.3",
"@begin/api": "1.9.4",
"@colors/colors": "1.6.0",
"@enhance/cli": "1.0.8",
"@enhance/starter-project": "6.1.3",
"@enhance/cli": "1.1.0",
"@enhance/starter-project": "7.0.1",
"adm-zip": "0.5.10",
"enquirer": "2.4.1",
"minimist": "1.2.8",
"node-machine-id": "1.1.12",
"restore-cursor": "3.1.0",
"strip-ansi": "6.0.1",
"tiny-json-http": "7.5.1",
"tmp": "0.2.1",
"ws": "8.15.1"
"tmp": "0.2.3",
"ws": "8.16.0"
},
"devDependencies": {
"@architect/eslint-config": "~2.1.2",
"@architect/plugin-node-prune": "2.1.0-RC.0",
"@aws-sdk/client-apigatewaymanagementapi": "3.410.0",
"@aws-sdk/client-dynamodb": "3.410.0",
"@aws-sdk/client-s3": "3.410.0",
"@aws-sdk/client-sns": "3.410.0",
"@aws-sdk/client-sqs": "3.410.0",
"@aws-sdk/client-ssm": "3.410.0",
"@aws-sdk/lib-dynamodb": "3.410.0",
"aws-sdk": "2.1457.0",
"@aws-sdk/client-apigatewaymanagementapi": "3.525.0",
"@aws-sdk/client-dynamodb": "3.528.0",
"@aws-sdk/client-s3": "3.525.0",
"@aws-sdk/client-sns": "3.525.0",
"@aws-sdk/client-sqs": "3.525.0",
"@aws-sdk/client-ssm": "3.525.0",
"@aws-sdk/lib-dynamodb": "3.528.0",
"aws-sdk": "2.1572.0",
"cross-env": "~7.0.3",
"eslint": "~8.56.0",
"eslint": "~8.57.0",
"fs-extra": "~11.2.0",
"nyc": "~15.1.0",
"pkg": "5.8.1",
"proxyquire": "~2.1.3",
"string-argv": "~0.3.2",
"tap-arc": "~1.2.2",
"tape": "~5.7.3"
"tape": "~5.7.5"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"rules": {
"global-require": "off"
},
"ignorePatterns": ["scratch/", "test/tmp/"]
"ignorePatterns": [
"scratch/",
"test/tmp/"
]
}
}
2 changes: 1 addition & 1 deletion test/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let run = async (runTests, t) => {
}
}

let defaultNumberOfLambdas = 5
let defaultNumberOfLambdas = 3

async function getInv (t, cwd) {
try {
Expand Down

0 comments on commit f42e3be

Please sign in to comment.