Cypress tests that don't require auth: branch 2604-non-auth-tests by @contolini #3
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: Cypress tests | |
| on: | |
| pull_request: | |
| run-name: "Cypress tests that don't require auth: branch ${{ github.head_ref }} by @${{ github.actor }}" | |
| jobs: | |
| unauthenticated-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Run Cypress tests that don't require auth | |
| run: yarn test-unauthenticated |