1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-21 01:09:53 +01:00

GitHub Actions: Add json problem matcher (#37490)

* GitHub Actions: Add json problem matcher

* Create a problem for testing

* Revert "Create a problem for testing"

This reverts commit d7735e4af3.
This commit is contained in:
Franck Nijhof
2020-07-05 01:59:41 +02:00
committed by GitHub
parent 83b41897f8
commit c71fcc8cbb
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
"problemMatcher": [
{
"owner": "check-json",
"pattern": [
{
"regexp": "^(.+):\\s(.+\\sline\\s(\\d+)\\scolumn\\s(\\d+).+)$",
"file": 1,
"message": 2,
"line": 3,
"column": 4
}
]
}
]
}