Skip to content

Commit

Permalink
Create run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPoblete authored Jun 6, 2024
1 parent 2faa418 commit eefbe2c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Run tests

on: push
permissions:
contents: write
pull-requests: write
issues: read
packages: none

jobs:
setup:
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: Run dev
run: yarn dev
run-tests:
runs-on: ubuntu-latest
steps:
- name: Run tests
run: yarn cy:run

0 comments on commit eefbe2c

Please sign in to comment.