Skip to content

Commit a05a2bf

Browse files
committed
ci: run bun test from repo folder
1 parent c4141ec commit a05a2bf

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,11 @@ jobs:
5353

5454
- name: Run tests
5555
run: bun test --reporter=junit --reporter-outfile=test-results.xml
56-
working-directory: tests
5756

5857
- name: Upload test results
5958
uses: actions/upload-artifact@v4
6059
if: always()
6160
with:
6261
name: test-results
63-
path: tests/test-results.xml
62+
path: test-results.xml
6463
retention-days: 30

.github/workflows/test-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616
with:
1717
artifact: test-results
1818
name: Tests
19-
path: "tests/test-results.xml"
19+
path: "*.xml"
2020
reporter: jest-junit

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Thanks to its conventions-based approach it bridges the gap seamlessly, with alm
33

44
TODO:
55

6-
7-
- [ ] Add GH pipeline (incl. test report)
86
- [ ] auto-register class for members of type `type`.
97
- [ ] Make `NodeFunction` thread safe by convention when it is used in an async function/method.
108
- [ ] Add `NodeObject` for "by reference" access to JS objects from Zig

0 commit comments

Comments
 (0)