Skip to content

Add initial README and CodeCov setup #12

Add initial README and CodeCov setup

Add initial README and CodeCov setup #12

Workflow file for this run

name: Cypress Tests
on: push
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
env:
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
DEV_API: ${{ secrets.DEV_API }}
PROD_API: ${{ secrets.PROD_API }}
with:
build: npm run build
start: npm start
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Infinity-Times-Two/escape-room-builder-frontend