example-basic #526
Workflow file for this run
This file contains hidden or 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: example-basic | |
| # This workflow represents a set of basic End-to-End tests | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| DEBUG: 'cypress:cli*' | |
| jobs: | |
| basic: | |
| runs-on: windows-11-arm | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - run: node -v | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: node -v | |
| - run: npm install npm@latest -g | |
| - run: npm -v | |
| - run: npm ci | |
| working-directory: examples/basic | |
| env: | |
| CYPRESS_INSTALL_BINARY: 0 | |
| - run: npx cypress install | |
| working-directory: examples/basic | |
| env: | |
| DEBUG: 'cypress:cli*' | |
| CYPRESS_DOWNLOAD_PATH_TEMPLATE: '${endpoint}/win32-x64/cypress.zip' | |
| - name: Cypress tests | |
| # normally you would write | |
| # uses: cypress-io/github-action@v6 | |
| uses: ./ | |
| # the parameters below are only necessary | |
| # because we are running these examples in a monorepo | |
| with: | |
| install: false | |
| working-directory: examples/basic | |
| # just for full picture after installing Cypress | |
| # print information about detected browsers, etc | |
| # see https://on.cypress.io/command-line#cypress-info | |
| build: npx cypress info |