Skip to content

Add linting

Add linting #1

Workflow file for this run

name: Backend CI
on:
push:
branches: [ main ]
paths:
- 'api/**'
pull_request:
branches: [ main ]
paths:
- 'api/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./api
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '>=18'
- name: Install dependencies
run: npm ci
# - name: Run tests
# run: npm test // Add tests later
- name: Lint
run: npm run lint