From 45330cf0ae10d59b404d0a28235028dc6bbcc0f2 Mon Sep 17 00:00:00 2001 From: Marcel Gerber Date: Wed, 2 Mar 2022 20:37:42 +0100 Subject: [PATCH] Revert "add `tsc` problem matcher for GH Actions ..." This reverts commit a6ad5c9068a0f0edeec1b2ef367cc2df5c585109. The `tsc` problem matcher is now properly included in `setup-node` (https://github.com/actions/setup-node/pull/125). --- .github/problemMatchers/tsc.json | 19 ------------------- .github/workflows/ci.yml | 3 --- 2 files changed, 22 deletions(-) delete mode 100644 .github/problemMatchers/tsc.json diff --git a/.github/problemMatchers/tsc.json b/.github/problemMatchers/tsc.json deleted file mode 100644 index 9c5d7901333..00000000000 --- a/.github/problemMatchers/tsc.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "problemMatcher": [ - { - "owner": "tsc", - "pattern": [ - { - "name": "tsc", - "regexp": "^([^\\s].*)[\\(:](\\d+)[,:](\\d+)(?:\\):\\s+|\\s+-\\s+)(error|warning|info)\\s+TS(\\d+)\\s*:\\s*(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "code": 5, - "message": 6 - } - ] - } - ] -} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dabc4b03012..d317fe7f0f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,9 +12,6 @@ jobs: - uses: ./.github/actions/setup-node-yarn-deps - - name: Register Problem Matcher - run: echo "##[add-matcher].github/problemMatchers/tsc.json" - - name: Run prettier run: yarn testPrettierAll