Skip to content

release #1474

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

Merged
merged 30 commits into from
Dec 1, 2021
Merged

release #1474

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e8166b9
chore: Ensure mockes are always loaded so tests can run in isolation …
npalm Dec 1, 2021
8094576
fix(logging): Add context to webhook logs (#1401)
mcaulifn Dec 1, 2021
0ba0930
fix: add logging context to runner lambda (#1399)
mcaulifn Dec 1, 2021
dc62432
chore: Bump @types/jest in /modules/runners/lambdas/runners (#1431)
dependabot[bot] Dec 1, 2021
aee90b1
chore: Bump @octokit/webhooks in /modules/webhook/lambdas/webhook (#1…
dependabot[bot] Dec 1, 2021
21e1ada
chore: Bump aws-sdk (#1447)
dependabot[bot] Dec 1, 2021
0612d06
chore: Bump aws-sdk in /modules/webhook/lambdas/webhook (#1460)
dependabot[bot] Dec 1, 2021
c998c47
chore: Bump aws-sdk in /modules/runners/lambdas/runners (#1457)
dependabot[bot] Dec 1, 2021
feaf94d
chore: Bump prettier (#1455)
dependabot[bot] Dec 1, 2021
17b09c9
chore: Bump @aws-sdk/client-ssm in /modules/webhook/lambdas/webhook (…
dependabot[bot] Dec 1, 2021
0692ade
chore: Bump @aws-sdk/client-ssm in /modules/runners/lambdas/runners (…
dependabot[bot] Dec 1, 2021
b68337a
chore: Bump @types/jest (#1432)
dependabot[bot] Dec 1, 2021
74b48cb
chore: Bump tslog in /modules/runners/lambdas/runners (#1465)
dependabot[bot] Dec 1, 2021
391ae38
chore: Bump tslog in /modules/webhook/lambdas/webhook (#1464)
dependabot[bot] Dec 1, 2021
46e2dcd
chore: Bump prettier in /modules/runners/lambdas/runners (#1461)
dependabot[bot] Dec 1, 2021
8c3d342
chore: Bump jest in /modules/runners/lambdas/runners (#1469)
dependabot[bot] Dec 1, 2021
8c38126
chore: Bump @types/node in /modules/runners/lambdas/runners (#1456)
dependabot[bot] Dec 1, 2021
3adcbba
chore: Bump @types/jest in /modules/webhook/lambdas/webhook (#1466)
dependabot[bot] Dec 1, 2021
9c75da1
chore: Bump prettier in /modules/webhook/lambdas/webhook (#1472)
dependabot[bot] Dec 1, 2021
8d74b64
chore: Bump tslog (#1467)
dependabot[bot] Dec 1, 2021
ee56a90
chore: Bump cron-parser in /modules/runners/lambdas/runners (#1470)
dependabot[bot] Dec 1, 2021
f04d0d7
chore: Bump jest in /modules/webhook/lambdas/webhook (#1471)
dependabot[bot] Dec 1, 2021
a32e774
chore: Bump @vercel/ncc in /modules/webhook/lambdas/webhook (#1434)
dependabot[bot] Dec 1, 2021
1de29a8
chore: Bump typescript in /modules/webhook/lambdas/webhook (#1440)
dependabot[bot] Dec 1, 2021
f6e388d
chore: Bump aws-sdk (#1473)
dependabot[bot] Dec 1, 2021
c84d42b
chore: Bump @types/node in /modules/webhook/lambdas/webhook (#1462)
dependabot[bot] Dec 1, 2021
78725df
chore: Bump @types/node (#1458)
dependabot[bot] Dec 1, 2021
58503dd
chore: Bump typescript (#1439)
dependabot[bot] Dec 1, 2021
e2074ca
chore: Bump @vercel/ncc (#1436)
dependabot[bot] Dec 1, 2021
3dfca38
chore: Bump jest (#1468)
dependabot[bot] Dec 1, 2021
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
4 changes: 4 additions & 0 deletions .github/workflows/lambda-runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,9 @@ jobs:
run: yarn lint
- name: Run tests
run: yarn test
- name: Run two tests in isolation
run: |
yarn run test src/scale-runners/scale-up.test.ts -t 'scaleUp with GHES on org level creates a runner with labels in s specific group' --coverage=false
yarn run test src/scale-runners/scale-up.test.ts -t 'scaleUp with public GH on org level creates a runner with labels in s specific group' --coverage=false
- name: Build distribution
run: yarn build
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
},
"devDependencies": {
"@octokit/rest": "^18.12.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.7",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.31.1",
"aws-sdk": "^2.1031.0",
"@vercel/ncc": "^0.32.0",
"aws-sdk": "^2.1040.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "^27.3.1",
"prettier": "2.4.1",
"jest": "^27.4.3",
"prettier": "2.5.0",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.6",
"typescript": "^4.4.4"
"typescript": "^4.5.2"
},
"dependencies": {
"tslog": "^3.2.2",
"tslog": "^3.3.0",
"axios": "^0.24.0"
}
}
Loading