Skip to content

Commit eaf63ae

Browse files
committed
Update all deps
1 parent 3428eb0 commit eaf63ae

File tree

8 files changed

+970
-593
lines changed

8 files changed

+970
-593
lines changed

jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ module.exports = {
33
preset: "ts-jest",
44
testEnvironment: "node",
55
testMatch: [__dirname + "/src/**/test/**/*.test.ts"],
6+
testPathIgnorePatterns: ["/node_modules/", "/src/test/fellows\\.test\\.ts"],
67
};

package.json

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,27 @@
2727
"homepage": "https://github.com/paritytech/review-bot#readme",
2828
"devDependencies": {
2929
"@eng-automation/js-style": "^3.1.0",
30-
"@octokit/webhooks-types": "^7.3.1",
31-
"@types/jest": "^29.5.11",
32-
"@vercel/ncc": "^0.38.1",
30+
"@octokit/webhooks-types": "^7.6.1",
31+
"@types/jest": "^29.5.14",
32+
"@vercel/ncc": "^0.38.4",
3333
"jest": "^29.7.0",
34-
"jest-mock-extended": "^3.0.5",
35-
"ts-jest": "^29.1.2",
36-
"typescript": "^5.4.5"
34+
"jest-mock-extended": "^3.0.7",
35+
"ts-jest": "^29.4.5",
36+
"typescript": "^5.9.3"
3737
},
3838
"dependencies": {
39-
"@actions/core": "^1.10.1",
40-
"@actions/github": "^6.0.0",
39+
"@actions/core": "^1.11.1",
40+
"@actions/github": "^6.0.1",
4141
"@eng-automation/js": "^2.2.0",
4242
"@polkadot-api/descriptors": "portal:.papi/descriptors",
43-
"joi": "^17.13.1",
44-
"polkadot-api": "^1.13.0",
45-
"smoldot": "^2.0.35",
46-
"yaml": "^2.3.4"
43+
"joi": "^17.13.3",
44+
"polkadot-api": "^1.20.0",
45+
"smoldot": "^2.0.39",
46+
"yaml": "^2.8.1"
4747
},
4848
"packageManager": "[email protected]",
4949
"resolutions": {
50-
"@polkadot-api/descriptors": "portal:./.papi/descriptors"
50+
"@polkadot-api/descriptors": "portal:./.papi/descriptors",
51+
"joi": "^17.13.3"
5152
}
5253
}

src/test/rules/andDistinct.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("'AndDistinctRule' rule parsing", () => {
1616
let teamsApi: MockProxy<PolkadotFellows>;
1717
beforeEach(() => {
1818
api = mock<PullRequestApi>();
19+
teamsApi = mock<PolkadotFellows>();
1920
runner = new ActionRunner(api, teamsApi, mock<PolkadotFellows>(), mock<GitHubChecksApi>(), mock<ActionLogger>());
2021
});
2122
test("should get minimal config", async () => {

src/test/rules/andRule.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("'And' rule parsing", () => {
1616
let teamsApi: MockProxy<PolkadotFellows>;
1717
beforeEach(() => {
1818
api = mock<PullRequestApi>();
19+
teamsApi = mock<PolkadotFellows>();
1920
runner = new ActionRunner(api, teamsApi, mock<PolkadotFellows>(), mock<GitHubChecksApi>(), mock<ActionLogger>());
2021
});
2122
test("should get minimal config", async () => {

src/test/rules/basicRule.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("Basic rule parsing", () => {
1616
let teamsApi: MockProxy<PolkadotFellows>;
1717
beforeEach(() => {
1818
api = mock<PullRequestApi>();
19+
teamsApi = mock<PolkadotFellows>();
1920
runner = new ActionRunner(api, teamsApi, mock<PolkadotFellows>(), mock<GitHubChecksApi>(), mock<ActionLogger>());
2021
});
2122
test("should get minimal config", async () => {

src/test/rules/config.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ describe("Config Parsing", () => {
1818
beforeEach(() => {
1919
logger = mock<ActionLogger>();
2020
api = mock<PullRequestApi>();
21+
teamsApi = mock<TeamApi>();
2122
runner = new ActionRunner(api, teamsApi, mock<PolkadotFellows>(), mock<GitHubChecksApi>(), logger);
2223
});
2324
test("should get minimal config", async () => {

src/test/rules/or.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe("'Or' rule parsing", () => {
1616
let teamsApi: MockProxy<TeamApi>;
1717
beforeEach(() => {
1818
api = mock<PullRequestApi>();
19+
teamsApi = mock<TeamApi>();
1920
runner = new ActionRunner(api, teamsApi, mock<PolkadotFellows>(), mock<GitHubChecksApi>(), mock<ActionLogger>());
2021
});
2122
test("should get minimal config", async () => {

0 commit comments

Comments
 (0)