Skip to content

Commit 264054c

Browse files
authored
chore: Remove NPM Workspaces (#119)
* Remove top level workspace reference * Move husky pre-commit to client package * Fix jsonforms version conflicts with mui * Update GitHub actions to reflect changes
1 parent 2a43026 commit 264054c

File tree

11 files changed

+39134
-83562
lines changed

11 files changed

+39134
-83562
lines changed

.github/workflows/client.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
name: Check for Linting Errors
22+
defaults:
23+
run:
24+
working-directory: packages/server
2225
steps:
2326
- name: Checkout Repository
2427
uses: actions/checkout@v3
@@ -35,7 +38,7 @@ jobs:
3538
shell: bash
3639

3740
- name: Check for Linting Issues
38-
run: npm run prettier --workspace=packages/client
41+
run: npm run prettier
3942

4043
build:
4144
runs-on: ubuntu-latest

.github/workflows/gateway.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
name: Check for Linting Errors
22+
defaults:
23+
run:
24+
working-directory: packages/gateway
2225
steps:
2326
- name: Checkout Repository
2427
uses: actions/checkout@v3
@@ -35,7 +38,7 @@ jobs:
3538
shell: bash
3639

3740
- name: Check for Linting Issues
38-
run: npm run prettier --workspace=packages/gateway
41+
run: npm run prettier
3942

4043
build:
4144
runs-on: ubuntu-latest

.github/workflows/server.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
lint:
2020
runs-on: ubuntu-latest
2121
name: Check for Linting Errors
22+
defaults:
23+
run:
24+
working-directory: packages/server
2225
steps:
2326
- name: Checkout Repository
2427
uses: actions/checkout@v3
@@ -35,7 +38,7 @@ jobs:
3538
shell: bash
3639

3740
- name: Check for Linting Issues
38-
run: npm run prettier --workspace=packages/server
41+
run: npm run prettier
3942

4043
build:
4144
runs-on: ubuntu-latest

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)