Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
lint:
runs-on: ubuntu-latest
name: Check for Linting Errors
defaults:
run:
working-directory: packages/server
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -35,7 +38,7 @@ jobs:
shell: bash

- name: Check for Linting Issues
run: npm run prettier --workspace=packages/client
run: npm run prettier

build:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
lint:
runs-on: ubuntu-latest
name: Check for Linting Errors
defaults:
run:
working-directory: packages/gateway
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -35,7 +38,7 @@ jobs:
shell: bash

- name: Check for Linting Issues
run: npm run prettier --workspace=packages/gateway
run: npm run prettier

build:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
lint:
runs-on: ubuntu-latest
name: Check for Linting Errors
defaults:
run:
working-directory: packages/server
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -35,7 +38,7 @@ jobs:
shell: bash

- name: Check for Linting Issues
run: npm run prettier --workspace=packages/server
run: npm run prettier

build:
runs-on: ubuntu-latest
Expand Down
3 changes: 0 additions & 3 deletions .husky/pre-commit

This file was deleted.

Loading