use regex to be more forgiving in matching yaml, yml, etc.

This commit is contained in:
Sarah Schneider 2021-03-31 12:25:51 -04:00
Родитель 10b13a8ebd
Коммит 62bb173ac6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)
}
})