Bump the js-packages group across 1 directory with 25 updates #807
Workflow file for this run
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: Cypress Tests | |
on: [push, pull_request] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run Cypress Tests | |
uses: cypress-io/github-action@v6 | |
env: | |
ELECTRON_EXTRA_LAUNCH_ARGS: '--disable-gpu' | |
with: | |
start: yarn start | |
wait-on: 'http://localhost:3000' | |
wait-on-timeout: 300 | |
component: true |