From 4f349807be2ba896c0884d4b057eb3f136d03e79 Mon Sep 17 00:00:00 2001 From: sriram veeraghanta Date: Fri, 29 Aug 2025 14:25:07 +0530 Subject: [PATCH] chore: docker image builds by removing node version in workspace.yml file (#7672) * fix: docker image builts by removing nodeversion in workspace.yml file * chore: remve .nvmrc file --- .github/workflows/check-version.yml | 2 -- .../workflows/pull-request-build-lint-web-apps.yml | 2 -- .nvmrc | 1 - pnpm-workspace.yaml | 14 ++++++-------- 4 files changed, 6 insertions(+), 13 deletions(-) delete mode 100644 .nvmrc diff --git a/.github/workflows/check-version.yml b/.github/workflows/check-version.yml index ca8b6f8b3..855ee359f 100644 --- a/.github/workflows/check-version.yml +++ b/.github/workflows/check-version.yml @@ -17,8 +17,6 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 - with: - node-version: '18' - name: Get PR Branch version run: echo "PR_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV diff --git a/.github/workflows/pull-request-build-lint-web-apps.yml b/.github/workflows/pull-request-build-lint-web-apps.yml index 3dba0e279..435ec2093 100644 --- a/.github/workflows/pull-request-build-lint-web-apps.yml +++ b/.github/workflows/pull-request-build-lint-web-apps.yml @@ -36,8 +36,6 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 - with: - node-version-file: ".nvmrc" - name: Enable Corepack and pnpm run: corepack enable pnpm diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index deed13c01..000000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -lts/jod diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index b0db5550d..89f629ce7 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,11 +1,9 @@ packages: - - apps/* - - packages/* - - "!apps/api" - - "!apps/proxy" +- apps/* +- packages/* +- "!apps/api" +- "!apps/proxy" onlyBuiltDependencies: - - turbo - - sharp - -useNodeVersion: 22.18.0 +- turbo +- sharp