Skip to content

feat: refine README to clarify project distinctiveness and complexity… #150

feat: refine README to clarify project distinctiveness and complexity…

feat: refine README to clarify project distinctiveness and complexity… #150

Workflow file for this run

name: Frontend CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install Dependencies
run: |
cd frontend
npm install
- name: Run Tests
run: |
cd frontend
npm run test