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 c1bc914 commit 6cc599eCopy full SHA for 6cc599e
.github/workflows/tests.yml
@@ -35,6 +35,13 @@ jobs:
35
- name: Start DynamoDB Local
36
run: docker run -d -p 8000:8000 amazon/dynamodb-local
37
38
+ - name: Wait for DynamoDB to become ready
39
+ run: |
40
+ until aws dynamodb list-tables --endpoint-url http://127.0.0.1:8000; do
41
+ echo "Waiting for local DynamoDB..."
42
+ sleep 1
43
+ done
44
+
45
- name: Create Rooms table for testing
46
run: node test/integration-tests/scripts/create-local-table.js
47
@@ -62,3 +69,12 @@ jobs:
62
69
63
70
- name: Run integration tests
64
71
run: npm run integration-tests
72
73
+ - name: Unit Test Report
74
+ uses: phoenix-actions/test-reporting@v8
75
+ id: unit-test-report
76
+ if: success() || failure()
77
+ with:
78
+ name: Unit Tests
79
+ path: junit.xml
80
+ reporter: jest-junit
0 commit comments