mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-17 17:21:11 +00:00
feat: allow folder of problem matcher registration
Allows registering of new problem matchers by adding them to folder
This commit is contained in:
parent
59e61b8951
commit
f87656b688
5 changed files with 14 additions and 12 deletions
17
matchers/tsc.json
Normal file
17
matchers/tsc.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"problemMatcher": [
|
||||
{
|
||||
"owner": "tsc",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)$",
|
||||
"file": 1,
|
||||
"location": 2,
|
||||
"severity": 3,
|
||||
"code": 4,
|
||||
"message": 5
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue