diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d0d110532b..d55f8d47f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,6 +34,12 @@ jobs: check-latest: true node-version-file: ".nvmrc" + - name: Disable GitHub Actions Annotations + run: | + echo "::remove-matcher owner=tsc::" + echo "::remove-matcher owner=eslint-compact::" + echo "::remove-matcher owner=eslint-stylish::" + - name: 📥 Install deps run: yarn --frozen-lockfile diff --git a/packages/react-router-dom-v5-compat/jest.config.js b/packages/react-router-dom-v5-compat/jest.config.js index 8bb26b2bf7..474c0b6df9 100644 --- a/packages/react-router-dom-v5-compat/jest.config.js +++ b/packages/react-router-dom-v5-compat/jest.config.js @@ -1,3 +1,4 @@ +/** @type {import('jest').Config} */ module.exports = { testEnvironment: "jsdom", testMatch: ["**/__tests__/*-test.[jt]s?(x)"], @@ -20,4 +21,5 @@ module.exports = { "^react-router$": "/../react-router/index.ts", "^react-router-dom-v5-compat$": "/index.ts", }, + reporters: ["default"], }; diff --git a/packages/react-router-dom/jest.config.js b/packages/react-router-dom/jest.config.js index 7103ca7e7d..559aa353c1 100644 --- a/packages/react-router-dom/jest.config.js +++ b/packages/react-router-dom/jest.config.js @@ -1,3 +1,4 @@ +/** @type {import('jest').Config} */ module.exports = { testEnvironment: "jsdom", testMatch: ["**/__tests__/*-test.[jt]s?(x)"], @@ -20,4 +21,5 @@ module.exports = { "^react-router$": "/../react-router/index.ts", "^react-router-dom$": "/index.tsx", }, + reporters: ["default"], }; diff --git a/packages/react-router-native/jest.config.js b/packages/react-router-native/jest.config.js index 9d0e2b4705..7fa77f39a4 100644 --- a/packages/react-router-native/jest.config.js +++ b/packages/react-router-native/jest.config.js @@ -1,3 +1,4 @@ +/** @type {import('jest').Config} */ module.exports = { preset: "react-native", testMatch: ["**/__tests__/*-test.[jt]s?(x)"], @@ -23,4 +24,5 @@ module.exports = { "^react-router$": "/../react-router/index.ts", "^react-router-native$": "/index.tsx", }, + reporters: ["default"], }; diff --git a/packages/router/jest.config.js b/packages/router/jest.config.js index 3832dc82eb..6fa87a5080 100644 --- a/packages/router/jest.config.js +++ b/packages/router/jest.config.js @@ -1,3 +1,4 @@ +/** @type {import('jest').Config} */ module.exports = { testEnvironment: "jsdom", testMatch: ["**/__tests__/*-test.(js|ts)"], @@ -15,4 +16,5 @@ module.exports = { "@web3-storage/multipart-parser" ), }, + reporters: ["default"], };