Skip to content

fx: polish fe, test cases #1

fx: polish fe, test cases

fx: polish fe, test cases #1

Workflow file for this run

name: Backend Tests
on:
push:
branches:
- main
paths:
- 'backend/**'
- 'package.json'
pull_request:
branches:
- main
paths:
- 'backend/**'
- 'package.json'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies (Root and Workspaces)
run: npm install
- name: 🧪 Run Backend Tests
run: npm run test:be