File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -66,36 +66,44 @@ jobs:
6666 steps :
6767 - name : " Checkout code"
6868 uses : actions/checkout@v5
69+
6970 - uses : actions/setup-node@v6
7071 with :
7172 node-version : 24
7273 cache : ' npm'
74+
7375 - name : " Repo setup"
7476 run : |
7577 npm ci
7678 working-directory : ./docs
79+
7780 - name : " Repo setup"
7881 run : |
7982 npm ci
8083 working-directory : ./src/cloudevents
84+
8185 - name : " Generate dependencies"
8286 run : |
8387 npm run generate-dependencies --workspaces --if-present
88+
8489 - name : " Run unit test suite"
8590 run : |
8691 make -C docs test
92+
8793 - name : " Save the result of fast test suite"
8894 uses : actions/upload-artifact@v4
8995 with :
9096 name : unit-tests
9197 path : " **/.reports/unit"
9298 include-hidden-files : true
9399 if : always()
100+
94101 - name : " Save the result of code coverage"
95102 uses : actions/upload-artifact@v4
96103 with :
97104 name : code-coverage-report
98- path : " .reports/lcov.info"
105+ path : " **/.reports/lcov.info"
106+
99107 - name : " Save Python coverage reports"
100108 uses : actions/upload-artifact@v4
101109 with :
You can’t perform that action at this time.
0 commit comments