Skip to content

Commit 4c789a9

Browse files
authored
ci: disable github action file annotations for eslint, tsc, and jest (#10399)
Signed-off-by: Logan McAnsh <[email protected]>
1 parent f92aa2e commit 4c789a9

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
check-latest: true
3535
node-version-file: ".nvmrc"
3636

37+
- name: Disable GitHub Actions Annotations
38+
run: |
39+
echo "::remove-matcher owner=tsc::"
40+
echo "::remove-matcher owner=eslint-compact::"
41+
echo "::remove-matcher owner=eslint-stylish::"
42+
3743
- name: 📥 Install deps
3844
run: yarn --frozen-lockfile
3945

packages/react-router-dom-v5-compat/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('jest').Config} */
12
module.exports = {
23
testEnvironment: "jsdom",
34
testMatch: ["**/__tests__/*-test.[jt]s?(x)"],
@@ -20,4 +21,5 @@ module.exports = {
2021
"^react-router$": "<rootDir>/../react-router/index.ts",
2122
"^react-router-dom-v5-compat$": "<rootDir>/index.ts",
2223
},
24+
reporters: ["default"],
2325
};

packages/react-router-dom/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('jest').Config} */
12
module.exports = {
23
testEnvironment: "jsdom",
34
testMatch: ["**/__tests__/*-test.[jt]s?(x)"],
@@ -20,4 +21,5 @@ module.exports = {
2021
"^react-router$": "<rootDir>/../react-router/index.ts",
2122
"^react-router-dom$": "<rootDir>/index.tsx",
2223
},
24+
reporters: ["default"],
2325
};

packages/react-router-native/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('jest').Config} */
12
module.exports = {
23
preset: "react-native",
34
testMatch: ["**/__tests__/*-test.[jt]s?(x)"],
@@ -23,4 +24,5 @@ module.exports = {
2324
"^react-router$": "<rootDir>/../react-router/index.ts",
2425
"^react-router-native$": "<rootDir>/index.tsx",
2526
},
27+
reporters: ["default"],
2628
};

packages/router/jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/** @type {import('jest').Config} */
12
module.exports = {
23
testEnvironment: "jsdom",
34
testMatch: ["**/__tests__/*-test.(js|ts)"],
@@ -15,4 +16,5 @@ module.exports = {
1516
"@web3-storage/multipart-parser"
1617
),
1718
},
19+
reporters: ["default"],
1820
};

0 commit comments

Comments
 (0)