Skip to content

Commit

Permalink
fix(workflows): install server dependencies for client linting
Browse files Browse the repository at this point in the history
  • Loading branch information
IdoBouskila committed Nov 30, 2024
1 parent 34bfdb2 commit 809304c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/client-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
with:
node-version: '18'

# Install dependencies for the server as well, because the client depends on it (tRPC)
- name: Install dependencies (server)
working-directory: ./server
run: yarn install

- name: Install dependencies (client)
working-directory: ./client
run: yarn install
Expand Down

0 comments on commit 809304c

Please sign in to comment.