chore(deps-dev): bump vite from 6.0.7 to 6.0.9 (#3017) #59
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: Run system tests - regress | |
on: | |
workflow_dispatch: | |
inputs: | |
ALLURE_JOB_RUN_ID: | |
type: string | |
description: ALLURE_JOB_RUN_ID service parameter. Leave blank. | |
required: false | |
ALLURE_USERNAME: | |
type: string | |
description: ALLURE_USERNAME service parameter. Leave blank. | |
required: false | |
push: | |
branches: | |
- 'dev' | |
pull_request: | |
paths: | |
- 'tests/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CI: true | |
ALLURE_ENDPOINT: https://nova.testops.cloud/ | |
ALLURE_PROJECT_ID: 1 | |
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }} | |
ALLURE_JOB_RUN_ID: ${{ github.event.inputs.ALLURE_JOB_RUN_ID }} | |
ALLURE_RESULTS: allure-results | |
jobs: | |
system-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ⚙️ Install dependencies | |
uses: ./.github/workflows/install-pnpm | |
- name: ⚙️ Install test dependencies | |
uses: ./.github/workflows/install-test | |
- name: Run Playwright tests | |
run: allurectl watch -- npx playwright test --grep @regress | |
- name: Run System Tests - Regression | |
uses: ./.github/workflows/run-system-tests | |
with: | |
telegram_token: ${{ secrets.TELEGRAM_TOKEN }} | |
telegram_to: ${{ secrets.TELEGRAM_TO }} | |
test_grep: '@regress' |