Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
IdoBouskila committed Nov 29, 2024
1 parent f4f0466 commit ef20988
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/client-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Client Lint

on:
pull_request:
paths:
- 'client/**'

jobs:
lint:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/server-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Server Lint

on:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install dependencies (server)
working-directory: ./server
run: yarn install

- name: Run linter (server)
working-directory: ./server
run: yarn lint

0 comments on commit ef20988

Please sign in to comment.