We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6ab06 commit 51c421bCopy full SHA for 51c421b
.github/workflows/update-tests-md.yml
@@ -37,14 +37,14 @@ jobs:
37
38
- name: Run Jest tests and save results
39
run: |
40
- npm test -- --json --outputFile=./results.json
+ npm test -- --json --outputFile=./tests/results.json
41
continue-on-error: true # Ensures the job continues even if tests fail
42
43
- name: Upload test results as an artifact
44
uses: actions/upload-artifact@v3
45
with:
46
name: test-results
47
- path: ./results.json
+ path: ./tests/results.json
48
49
- name: Update Tests.md with test results
50
run: node ./tests/updateTestsMd.js # Your custom script to update Tests.md with test results
0 commit comments