Skip to content

Commit 7ce8a74

Browse files
committedAug 23, 2022
chore: postinstall for dependabot template-oss PR
1 parent 86fb069 commit 7ce8a74

File tree

5 files changed

+41
-7
lines changed

5 files changed

+41
-7
lines changed
 

‎.github/matchers/tap.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"//@npmcli/template-oss": "This file is automatically added by @npmcli/template-oss. Do not edit.",
3+
"problemMatcher": [
4+
{
5+
"owner": "tap",
6+
"pattern": [
7+
{
8+
"regexp": "^\\s*not ok \\d+ - (.*)",
9+
"message": 1
10+
},
11+
{
12+
"regexp": "^\\s*---"
13+
},
14+
{
15+
"regexp": "^\\s*at:"
16+
},
17+
{
18+
"regexp": "^\\s*line:\\s*(\\d+)",
19+
"line": 1
20+
},
21+
{
22+
"regexp": "^\\s*column:\\s*(\\d+)",
23+
"column": 1
24+
},
25+
{
26+
"regexp": "^\\s*file:\\s*(.*)",
27+
"file": 1
28+
}
29+
]
30+
}
31+
]
32+
}

‎.github/workflows/audit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ name: Audit
55
on:
66
workflow_dispatch:
77
schedule:
8-
# "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1
9-
- cron: "0 1 * * 1"
8+
# "At 08:00 UTC (01:00 PT) on Monday" https://crontab.guru/#0_8_*_*_1
9+
- cron: "0 8 * * 1"
1010

1111
jobs:
1212
audit:

‎.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
- main
1313
- latest
1414
schedule:
15-
# "At 02:00 on Monday" https://crontab.guru/#0_2_*_*_1
16-
- cron: "0 2 * * 1"
15+
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
16+
- cron: "0 9 * * 1"
1717

1818
jobs:
1919
lint:
@@ -82,5 +82,7 @@ jobs:
8282
if: ${{ !startsWith(matrix.node-version, '10.') }}
8383
run: npm i --prefer-online --no-fund --no-audit -g npm@latest
8484
- run: npm -v
85+
- name: add tap problem matcher
86+
run: echo "::add-matcher::.github/matchers/tap.json"
8587
- run: npm i --ignore-scripts --no-audit --no-fund
8688
- run: npm test --ignore-scripts

‎.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
- main
1414
- latest
1515
schedule:
16-
# "At 03:00 on Monday" https://crontab.guru/#0_3_*_*_1
17-
- cron: "0 3 * * 1"
16+
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
17+
- cron: "0 10 * * 1"
1818

1919
jobs:
2020
analyze:

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
},
4545
"templateOSS": {
4646
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
47-
"version": "3.5.0"
47+
"version": "3.6.0"
4848
}
4949
}

0 commit comments

Comments
 (0)
Please sign in to comment.