Skip to content

Add home page

Add home page #8

Workflow file for this run

name: PR Tests
on:
pull_request:
branches: [ main, master ]
paths:
- 'client/**'
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test