Skip to content

👷 Add build to CI/CD workflow #3

👷 Add build to CI/CD workflow

👷 Add build to CI/CD workflow #3

Workflow file for this run

name: Run tests
on: push
permissions:
contents: write
pull-requests: write
issues: read
packages: none
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: '20.10.0'
- name: Install dependencies
run: yarn install
- name: Install cypress
run: yarn cypress install
- name: Build app
run: yarn build
- name: Run app
run: yarn start
- name: Run tests
run: yarn cy:run