Skip to content

refactor: add a backend service (#3) #3

refactor: add a backend service (#3)

refactor: add a backend service (#3) #3

Workflow file for this run

name: Lint and Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install Dependencies
run: npm run install:all
- name: Check Format
run: npm run format:check
- name: Run Lint
run: npm run lint