Skip to content

Merge pull request #1143 from Folex1275/fix #471

Merge pull request #1143 from Folex1275/fix

Merge pull request #1143 from Folex1275/fix #471

Workflow file for this run

name: Backend CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: backend/package-lock.json
- run: npm ci
working-directory: backend