docs(documentation): Add RFC 0019 Bundle-Info Preload #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Coverage Reporting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| coverage: | |
| name: Check coverage and report to Coveralls | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22.20.0 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check coverage | |
| run: npm run coverage | |
| - name: Send report to Coveralls for package @ui5/builder | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/builder/coverage/lcov.info | |
| base-path: packages/builder | |
| - name: Send report to Coveralls for package @ui5/cli | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/cli/coverage/lcov.info | |
| base-path: packages/cli | |
| - name: Send report to Coveralls for package @ui5/fs | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/fs/coverage/lcov.info | |
| base-path: packages/fs | |
| - name: Send report to Coveralls for package @ui5/logger | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/logger/coverage/lcov.info | |
| base-path: packages/logger | |
| - name: Send report to Coveralls for package @ui5/project | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/project/coverage/lcov.info | |
| base-path: packages/project | |
| - name: Send report to Coveralls for package @ui5/server | |
| uses: coverallsapp/[email protected] | |
| continue-on-error: true # Do not fail the job if coverage reporting fails (e.g. service is down) | |
| with: | |
| file: packages/server/coverage/lcov.info | |
| base-path: packages/server |