build(deps): bump the github-actions group across 1 directory with 4 updates #437
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: Test | |
| "on": | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - edited | |
| - reopened | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| name: Test, Lint, Typecheck and Quick-Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - uses: bahmutov/npm-install@v1.11.2 | |
| with: | |
| useRollingCache: true | |
| - name: Run Yarn tests | |
| run: CI=true yarn test | |
| - name: Run Yarn lint | |
| run: CI=true yarn lint | |
| - name: Run TSC Typecheck | |
| run: CI=true tsc -p tsconfig.json --noEmit --incremental | |
| - name: Run Yarn Build | |
| run: CI=true yarn build | |
| cypress: | |
| name: Cypress Tests | |
| runs-on: ubuntu-latest | |
| container: cypress/browsers:node-20.11.1-chrome-123.0.6312.58-1-ff-124.0-edge-122.0.2365.92-1 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: bahmutov/npm-install@v1.11.2 | |
| with: | |
| useRollingCache: true | |
| - uses: cypress-io/github-action@v6 | |
| with: | |
| install: "false" | |
| browser: chrome | |
| start: npm run dev | |
| wait-on: http://localhost:3000 | |
| config-file: cypress.config.ts | |
| env: | |
| PREVIEW_ENDPOINT: "http://localhost:3000" | |
| - uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: cypress-screenshots | |
| path: ./cypress/screenshots | |
| - uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: cypress-videos | |
| path: ./cypress/videos |