diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d9e21f..cfb7c71 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: const getTask = (text) => { const result = []; let match; - while ((match = TASK_REGEXP.exec(text)) !== null) { + while ((match = TASK_REGEXP.exec(text) !== null) { result.push(match[1]) }