Skip to content

Commit 7a32f7c

Browse files
committed
Fix test workflow jest path
Uses regex, not glob (which would lead to Jest running all tests, not only solution ones)
1 parent 65c3939 commit 7a32f7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
- run: npm install
15-
- run: npm run test -- **/solution
15+
- run: npm run test -- solution

0 commit comments

Comments
 (0)