Skip to content

Merge pull request #267 from Alforoan/jay_fix_more_bugs #457

Merge pull request #267 from Alforoan/jay_fix_more_bugs

Merge pull request #267 from Alforoan/jay_fix_more_bugs #457

Workflow file for this run

name: Client CI
on:
push:
branches:
- '*'
paths:
- 'client/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
cd client
npm install
- name: Run tests
run: |
cd client
npm test