@@ -128,6 +128,41 @@ updates:
128
128
labels:
129
129
- "Dependencies"
130
130
131
+ .github/matchers/tap.json
132
+ ========================================
133
+ {
134
+ "//@npmcli/template-oss": "This file is automatically added by @npmcli/template-oss. Do not edit.",
135
+ "problemMatcher": [
136
+ {
137
+ "owner": "tap",
138
+ "pattern": [
139
+ {
140
+ "regexp": "^/s*not ok /d+ - (.*)",
141
+ "message": 1
142
+ },
143
+ {
144
+ "regexp": "^/s*---"
145
+ },
146
+ {
147
+ "regexp": "^/s*at:"
148
+ },
149
+ {
150
+ "regexp": "^/s*line:/s*(/d+)",
151
+ "line": 1
152
+ },
153
+ {
154
+ "regexp": "^/s*column:/s*(/d+)",
155
+ "column": 1
156
+ },
157
+ {
158
+ "regexp": "^/s*file:/s*(.*)",
159
+ "file": 1
160
+ }
161
+ ]
162
+ }
163
+ ]
164
+ }
165
+
131
166
.github/workflows/audit.yml
132
167
========================================
133
168
# This file is automatically added by @npmcli/template-oss. Do not edit.
@@ -244,6 +279,8 @@ jobs:
244
279
if: \${{ !startsWith(matrix.node-version, '10.') }}
245
280
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
246
281
- run: npm -v
282
+ - name: add tap problem matcher
283
+ run: echo "::add-matcher::.github/matchers/tap.json"
247
284
- run: npm i --ignore-scripts --no-audit --no-fund
248
285
- run: npm test --ignore-scripts
249
286
@@ -619,6 +656,41 @@ updates:
619
656
labels:
620
657
- "Dependencies"
621
658
659
+ .github/matchers/tap.json
660
+ ========================================
661
+ {
662
+ "//@npmcli/template-oss": "This file is automatically added by @npmcli/template-oss. Do not edit.",
663
+ "problemMatcher": [
664
+ {
665
+ "owner": "tap",
666
+ "pattern": [
667
+ {
668
+ "regexp": "^/s*not ok /d+ - (.*)",
669
+ "message": 1
670
+ },
671
+ {
672
+ "regexp": "^/s*---"
673
+ },
674
+ {
675
+ "regexp": "^/s*at:"
676
+ },
677
+ {
678
+ "regexp": "^/s*line:/s*(/d+)",
679
+ "line": 1
680
+ },
681
+ {
682
+ "regexp": "^/s*column:/s*(/d+)",
683
+ "column": 1
684
+ },
685
+ {
686
+ "regexp": "^/s*file:/s*(.*)",
687
+ "file": 1
688
+ }
689
+ ]
690
+ }
691
+ ]
692
+ }
693
+
622
694
.github/workflows/audit.yml
623
695
========================================
624
696
# This file is automatically added by @npmcli/template-oss. Do not edit.
@@ -739,6 +811,8 @@ jobs:
739
811
if: \${{ !startsWith(matrix.node-version, '10.') }}
740
812
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
741
813
- run: npm -v
814
+ - name: add tap problem matcher
815
+ run: echo "::add-matcher::.github/matchers/tap.json"
742
816
- run: npm i --ignore-scripts --no-audit --no-fund
743
817
- run: npm test --ignore-scripts -w bbb
744
818
@@ -832,6 +906,8 @@ jobs:
832
906
if: \${{ !startsWith(matrix.node-version, '10.') }}
833
907
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
834
908
- run: npm -v
909
+ - name: add tap problem matcher
910
+ run: echo "::add-matcher::.github/matchers/tap.json"
835
911
- run: npm i --ignore-scripts --no-audit --no-fund
836
912
- run: npm test --ignore-scripts -w @name/aaaa
837
913
@@ -921,6 +997,8 @@ jobs:
921
997
if: \${{ !startsWith(matrix.node-version, '10.') }}
922
998
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
923
999
- run: npm -v
1000
+ - name: add tap problem matcher
1001
+ run: echo "::add-matcher::.github/matchers/tap.json"
924
1002
- run: npm i --ignore-scripts --no-audit --no-fund
925
1003
- run: npm test --ignore-scripts
926
1004
0 commit comments