This is an automated email from the ASF dual-hosted git repository. harishgokul01 pushed a commit to branch development in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
commit 8f00e1323745795f86835fd8fde27a35fbd7340f Author: harish876 <[email protected]> AuthorDate: Tue Jan 20 01:03:02 2026 +0000 Additional Optimisations to the vercel deployment pipeline --- .github/workflows/deploy-ecosystem.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/deploy-ecosystem.yml b/.github/workflows/deploy-ecosystem.yml index b47c1743..d42b8014 100644 --- a/.github/workflows/deploy-ecosystem.yml +++ b/.github/workflows/deploy-ecosystem.yml @@ -133,33 +133,10 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: | - **/package-lock.json - **/npm-shrinkwrap.json - **/yarn.lock - **/pnpm-lock.yaml - - - name: Enable Corepack (for pnpm/yarn if needed) - run: corepack enable - name: Install Vercel CLI run: npm install --global vercel@latest - - name: Install dependencies - working-directory: ${{ matrix.project.path }} - run: | - if [ -f "package-lock.json" ]; then - npm ci - elif [ -f "yarn.lock" ]; then - yarn install --frozen-lockfile - elif [ -f "pnpm-lock.yaml" ]; then - pnpm install --frozen-lockfile - else - echo "No lockfile found, using npm install" - npm install - fi - - name: Pull Vercel Environment Information working-directory: ${{ matrix.project.path }} env:
