From 4d56ad6e99f81a70bfd9160233902ade1d40b741 Mon Sep 17 00:00:00 2001 From: Ryan Yensch Date: Fri, 20 Feb 2026 03:53:04 +1100 Subject: [PATCH 1/2] added shared build --- .github/workflows/ci.yml | 4 ++++ package.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a11d7a5..3b09a08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: - name: Format check run: npm run format:check + - name: Build shared + run: npm -w packages/shared run build + + - name: Lint run: npm run lint diff --git a/package.json b/package.json index a72186a..1da00ef 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "dev": "concurrently -n backend,frontend -c auto \"npm -w apps/backend run dev\" \"npm -w apps/frontend run dev\"", "build": "npm -w packages/shared run build && npm -w apps/backend run build && npm -w apps/frontend run build", "test": "npm --workspaces run test", - "lint": "npm --workspaces run lint", + "lint": "npm -w packages/shared run build && npm --workspaces run lint", "format": "prettier . --write", "format:check": "prettier . --check" }, @@ -39,4 +39,4 @@ "prettier": "^3.8.1", "typescript-eslint": "^8.56.0" } -} +} \ No newline at end of file From 4f90c1973da6027484202086cda6252cef1ebe48 Mon Sep 17 00:00:00 2001 From: Ryan Yensch Date: Fri, 20 Feb 2026 03:56:00 +1100 Subject: [PATCH 2/2] fixed prettier --- .github/workflows/ci.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b09a08..94da84c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,6 @@ jobs: - name: Build shared run: npm -w packages/shared run build - - name: Lint run: npm run lint diff --git a/package.json b/package.json index 1da00ef..4034711 100644 --- a/package.json +++ b/package.json @@ -39,4 +39,4 @@ "prettier": "^3.8.1", "typescript-eslint": "^8.56.0" } -} \ No newline at end of file +}