Skip to content

UTOPIA-1614: Changed Makefile to npm scripts #704

UTOPIA-1614: Changed Makefile to npm scripts

UTOPIA-1614: Changed Makefile to npm scripts #704

Workflow file for this run

name: 'API Pull Request Lint'
on:
pull_request:
branches: [main]
paths:
- "src/backend/**"
workflow_dispatch:
jobs:
API-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install project dependencies, run lint
run: |
cd src/backend
npm ci
npm run lint