I edited workflow of Github Actions to this: ```na...
# help
l
I edited workflow of Github Actions to this:
Copy code
name: Cypress Tests

on: [push]

jobs:
  cypress-run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Install
        run: npm i --force
      - name: Build
        run: npm run build --force
      - name: Run React and Cypress
        run: npm run start & npm run cypress:run