Skip to content

Commit 51c421b

Browse files
committed
Fix JSON output path
1 parent df6ab06 commit 51c421b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-tests-md.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737

3838
- name: Run Jest tests and save results
3939
run: |
40-
npm test -- --json --outputFile=./results.json
40+
npm test -- --json --outputFile=./tests/results.json
4141
continue-on-error: true # Ensures the job continues even if tests fail
4242

4343
- name: Upload test results as an artifact
4444
uses: actions/upload-artifact@v3
4545
with:
4646
name: test-results
47-
path: ./results.json
47+
path: ./tests/results.json
4848

4949
- name: Update Tests.md with test results
5050
run: node ./tests/updateTestsMd.js # Your custom script to update Tests.md with test results

0 commit comments

Comments
 (0)