Skip to content

Update readme.md

Update readme.md #33

Workflow file for this run

# CI Workflow: Biome JS | Backend
#
# This workflow automates the process of checking code style using Biome.
# It is triggered on push events to the `Backend` folder from any branch.
#
# Permissions:
# - contents: read
#
# Jobs:
# 1. **style-checker**: This job checks the code style using Biome.
# - Steps:
# 1. Checkout the repository.
# 2. Setup Node.js environment.
# 3. Install dependencies and run Biome check.
name: "CI: Biome JS | Backend"
on:
push:
paths:
- backend/**
permissions:
contents: read
jobs:
style-checker:
name: Style Checker
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install dependencies and run biome
run: |
cd backend
npm install
npm run biome:check