зеркало из https://github.com/github/docs.git
use regex to be more forgiving in matching yaml, yml, etc.
This commit is contained in:
Родитель
10b13a8ebd
Коммит
62bb173ac6
|
@ -269,7 +269,7 @@ describe('lint markdown content', () => {
|
|||
|
||||
yamlScheduledWorkflows = []
|
||||
visit(ast, 'code', node => {
|
||||
if (node.lang === 'yaml' && node.value.includes('schedule') && node.value.includes('cron')) {
|
||||
if (/ya?ml/.test(node.lang) && node.value.includes('schedule') && node.value.includes('cron')) {
|
||||
yamlScheduledWorkflows.push(node.value)
|
||||
}
|
||||
})
|
||||
|
|
Загрузка…
Ссылка в новой задаче