fix(sheets-data-validation): data-validation oom on extreme-big-range #5009
Workflow file for this run
This file contains 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: 🎭 Playwright Tests | |
on: | |
pull_request: | |
branches: [dev] | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: ./.github/actions/setup-node | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps chromium | |
- name: Build E2E Client | |
run: pnpm build:e2e | |
- name: Run Playwright Tests | |
run: pnpm exec playwright test | |
- name: 🚀 Deploy to Vercel | |
uses: amondnet/vercel-action@v25 | |
id: vercel-e2e-report | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.ORG_ID }} | |
vercel-project-id: ${{ secrets.PROJECT_ID_E2E}} | |
- name: Generate Playwright Report | |
uses: daun/playwright-report-summary@v3 | |
if: always() | |
with: | |
report-file: playwright-report.json | |
custom-info: 'For more information, [see full report](${{ steps.vercel-e2e-report.outputs.preview-url }})' | |
- name: Set Label | |
uses: actions/github-script@v6 | |
if: failure() | |
with: | |
script: | | |
const { owner, repo } = context.repo; | |
const prNumber = context.payload.pull_request.number; | |
const labelsToAdd = ['qa:rejected']; | |
await github.rest.issues.addLabels({ | |
owner, | |
repo, | |
issue_number: prNumber, | |
labels: labelsToAdd, | |
}); |