Skip to content

Commit

Permalink
ci: Linting workflow implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Axeloooo committed Feb 4, 2024
1 parent 56e2b64 commit 8d4cd53
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8d4cd53

Please sign in to comment.