SBVT-2446: fixing lowering the resolution when on a non-scrollable fullpage image #247
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: mac-and-windows-check | |
#on: [push] | |
on: [pull_request] | |
jobs: | |
cypress-run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [ 1 ] | |
os: [windows-latest, macos-latest] | |
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: Cypress run | |
uses: cypress-io/github-action@v5 | |
with: | |
quiet: true | |
working-directory: ./test | |
spec: cypress/e2e/test-spec/quick-test_* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PROJECT_TOKEN: ${{ secrets.DEV_EXAMPLE_7 }} | |
TEST_RUN_NAME: "${{ github.workflow }}—${{ runner.os }}—${{ github.ref }}" | |
DEBUG: TRUE | |