Update #477
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: CI Build | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Use Node.js 24 | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 24 | |
| # Cache Playwright browsers (important for speed) | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@master | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: playwright-${{ runner.os }} | |
| - name: Install dependencies | |
| run: npm ci | |
| # ✅ REQUIRED for Vitest browser-playwright | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium | |
| - name: Build | |
| run: npm run build-lib | |
| - name: Lint | |
| run: npm run lint-lib | |
| - name: Test | |
| run: npm run test-lib-headless | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5.5.2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: MurhafSousli/ngx-scrollbar | |
| - name: Code Coverage Report | |
| uses: irongut/CodeCoverageSummary@v1.3.0 | |
| with: | |
| filename: coverage/**/cobertura-coverage.xml | |
| badge: true | |
| fail_below_min: true | |
| format: markdown | |
| hide_branch_rate: false | |
| hide_complexity: true | |
| indicators: true | |
| output: both | |
| thresholds: '60 80' | |
| - name: Add Coverage PR Comment | |
| uses: marocchino/sticky-pull-request-comment@v2.9.4 | |
| if: github.event_name == 'pull_request' | |
| with: | |
| recreate: true | |
| path: code-coverage-results.md | |
| continue-on-error: true | |
| - name: Build demo (ssr) | |
| run: npm run build-ssr |