Skip to content

chore(master): release 4.65.0 #357

chore(master): release 4.65.0

chore(master): release 4.65.0 #357

Workflow file for this run

name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
verify_files:
name: Verify Files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install latest npm (>= 11.5.1)
run: |
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@latest
shell: bash
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Install test dependencies
working-directory: ./e2e
run: npm ci
- name: Install Playwright browsers
working-directory: ./e2e
run: npx playwright install --with-deps
- name: Run e2e tests
working-directory: ./e2e
run: npm run test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: e2e/playwright-report/
retention-days: 30
- name: Publish Test Report
if: ${{ !cancelled() }}
uses: ctrf-io/github-test-reporter@v1
with:
report-path: './e2e/ctrf/*.json'
summary-report: true
failed-report: true
pull-request: true
env:
GITHUB_TOKEN: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }}