SBVT-2597: Updating deps #249
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: print-report-check | |
#on: [push] | |
on: [pull_request] | |
jobs: | |
cypress-run: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install root dependencies | |
run: npm install | |
- name: Install test dependencies | |
run: npm install | |
working-directory: ./test | |
- name: Install Cypress | |
run: npm install cypress@latest | |
working-directory: ./test | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
quiet: true | |
working-directory: ./test | |
spec: cypress/e2e/test-spec/test_print_report* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PROJECT_TOKEN: ${{ secrets.DEV_EXAMPLE_7 }} | |
TEST_RUN_NAME: "${{ github.workflow }}—${{ runner.os }}—${{ github.ref }}" | |
SBVT_SCM_BRANCH: ${{ github.head_ref || github.ref_name }} | |
SBVT_SCM_COMMIT_ID: ${{ github.sha }} | |
DEBUG: TRUE | |