File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "problemMatcher" : [
3+ {
4+ "owner" : " deno-lint" ,
5+ "pattern" : [
6+ {
7+ "regexp" : " ^(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*(warning|warn|error)(?:\\ [(\\ S*)\\ ])?(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*: (.*?)(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*$" ,
8+ "severity" : 1 ,
9+ "code" : 2 ,
10+ "message" : 3
11+ },
12+ {
13+ "regexp" : " ^(?:\\ s*)(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*-->(?:\\ x1B\\ [[0-9;]*[a-zA-Z])* (?:\\ x1B\\ [[0-9;]*[a-zA-Z])*(\\ S+?)(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*:(\\ d+):(\\ d+)(?:\\ x1B\\ [[0-9;]*[a-zA-Z])*$" ,
14+ "file" : 1 ,
15+ "line" : 2 ,
16+ "column" : 3
17+ }
18+ ]
19+ }
20+ ]
21+ }
Original file line number Diff line number Diff line change 11import process from "node:process" ;
22import core from "@actions/core" ;
3+ import path from "node:path" ;
34import {
45 getDenoVersionFromFile ,
56 parseVersionRange ,
@@ -38,6 +39,12 @@ async function main() {
3839
3940 await install ( version ) ;
4041
42+ core . info (
43+ `::add-matcher::${
44+ path . join ( import . meta. dirname ?? "." , "deno-problem-matchers.json" )
45+ } `,
46+ ) ;
47+
4148 core . setOutput ( "deno-version" , version . version ) ;
4249 core . setOutput ( "release-channel" , version . kind ) ;
4350
You can’t perform that action at this time.
0 commit comments