Skip to content

Add documentation for odds, ends, and gotchas #24

Add documentation for odds, ends, and gotchas

Add documentation for odds, ends, and gotchas #24

Workflow file for this run

name: Automated testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
browser: chrome
start: npm run dev
wait-on: "http://localhost:3000/app/callcenters"