Skip to content

Merge branch 'dev' into feat/docker-deployment #242

Merge branch 'dev' into feat/docker-deployment

Merge branch 'dev' into feat/docker-deployment #242

Workflow file for this run

name: E2E and Unit Tests
on:
push:
workflow_dispatch:
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Create env file
run: |
touch .env
echo "NEXT_PUBLIC_PROJECT_ID=${{ secrets.NEXT_PUBLIC_PROJECT_ID }}" >> .env
echo "NEXT_PUBLIC_API_URL=${{ secrets.NEXT_PUBLIC_API_URL }}" >> .env
- name: run Cypress and Jest
uses: cypress-io/github-action@v6
with:
build: pnpm build
start: pnpm start
wait-on: 'http://localhost:5173'
command: pnpm test