feat(scatter): add dataLabels to scatter series #1086
Workflow file for this run
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: PR Visual Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| visual_tests: | |
| name: Visual Tests | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.56.1-jammy | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Packages | |
| run: npm ci | |
| - name: Run Visual Tests | |
| run: npm run playwright:visual | |
| env: | |
| CI: 'true' | |
| - name: Upload Playwright Report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report | |
| path: ./playwright-report | |
| retention-days: 1 | |
| - name: Save PR ID | |
| if: always() | |
| run: | | |
| pr="${{ github.event.pull_request.number }}" | |
| echo $pr > ./pr-id.txt | |
| shell: bash | |
| - name: Create PR Artifact | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: pr | |
| path: ./pr-id.txt | |
| visual_tests_perf: | |
| name: Visual Tests (Performance) | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.56.1-jammy | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Packages | |
| run: npm ci | |
| - name: Run Performance Tests | |
| run: npm run playwright:perf | |
| env: | |
| CI: 'true' | |
| - name: Upload Playwright Report | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-report-perf | |
| path: ./playwright-report | |
| retention-days: 1 |