diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdf910f..b5de04f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,19 @@ on: - dev jobs: + lint: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install dependencies + run: cd backend && npm install + + - name: Lint + run: cd backend && npm run lint + build: runs-on: ubuntu-latest