Skip to content

Merge pull request #2 from oanaOM/add-tailwind #14

Merge pull request #2 from oanaOM/add-tailwind

Merge pull request #2 from oanaOM/add-tailwind #14

Workflow file for this run

name: Cypress Tests
on:
push:
branches:
- main
pull_request:
jobs:
cypress-run:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/[email protected]
id: pnpm-install
with:
version: 8
run_install: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
with:
build: pnpm run build
start: pnpm start