Skip to content

Commit

Permalink
chore(action): add ci
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Cui <bh@bugs.cc>
  • Loading branch information
BlackHole1 committed Feb 22, 2024
1 parent d2fbb8c commit c64e720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
Expand Down

0 comments on commit c64e720

Please sign in to comment.