|
39 | 39 | - name: Run unit tests |
40 | 40 | run: npm run coverage |
41 | 41 |
|
| 42 | + - name: Send report to Coveralls for package @ui5/builder |
| 43 | + uses: coverallsapp/[email protected] |
| 44 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 45 | + with: |
| 46 | + flag-name: ui5-builder |
| 47 | + base-path: ./packages/builder |
| 48 | + file: ./packages/builder/coverage/lcov.info |
| 49 | + - name: Send report to Coveralls for package @ui5/cli |
| 50 | + uses: coverallsapp/[email protected] |
| 51 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 52 | + with: |
| 53 | + flag-name: ui5-cli |
| 54 | + base-path: ./packages/cli |
| 55 | + file: ./packages/cli/coverage/lcov.info |
| 56 | + - name: Send report to Coveralls for package @ui5/fs |
| 57 | + uses: coverallsapp/[email protected] |
| 58 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 59 | + with: |
| 60 | + flag-name: ui5-fs |
| 61 | + base-path: ./packages/fs |
| 62 | + file: ./packages/fs/coverage/lcov.info |
| 63 | + - name: Send report to Coveralls for package @ui5/logger |
| 64 | + uses: coverallsapp/[email protected] |
| 65 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 66 | + with: |
| 67 | + flag-name: ui5-logger |
| 68 | + base-path: ./packages/logger |
| 69 | + file: ./packages/logger/coverage/lcov.info |
| 70 | + - name: Send report to Coveralls for package @ui5/project |
| 71 | + uses: coverallsapp/[email protected] |
| 72 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 73 | + with: |
| 74 | + flag-name: ui5-project |
| 75 | + base-path: ./packages/project |
| 76 | + file: ./packages/project/coverage/lcov.info |
| 77 | + - name: Send report to Coveralls for package @ui5/server |
| 78 | + uses: coverallsapp/[email protected] |
| 79 | + continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) |
| 80 | + with: |
| 81 | + flag-name: ui5-server |
| 82 | + base-path: ./packages/server |
| 83 | + file: ./packages/server/coverage/lcov.info |
| 84 | + |
42 | 85 | - name: Generate JSDoc documentation |
43 | 86 | working-directory: packages/documentation |
44 | 87 | run: | |
|
0 commit comments