Skip to content

Commit 8f00e13

Browse files
committed
Additional Optimisations to the vercel deployment pipeline
1 parent d287ab2 commit 8f00e13

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

.github/workflows/deploy-ecosystem.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -133,33 +133,10 @@ jobs:
133133
uses: actions/setup-node@v4
134134
with:
135135
node-version: '20'
136-
cache: 'npm'
137-
cache-dependency-path: |
138-
**/package-lock.json
139-
**/npm-shrinkwrap.json
140-
**/yarn.lock
141-
**/pnpm-lock.yaml
142-
143-
- name: Enable Corepack (for pnpm/yarn if needed)
144-
run: corepack enable
145136

146137
- name: Install Vercel CLI
147138
run: npm install --global vercel@latest
148139

149-
- name: Install dependencies
150-
working-directory: ${{ matrix.project.path }}
151-
run: |
152-
if [ -f "package-lock.json" ]; then
153-
npm ci
154-
elif [ -f "yarn.lock" ]; then
155-
yarn install --frozen-lockfile
156-
elif [ -f "pnpm-lock.yaml" ]; then
157-
pnpm install --frozen-lockfile
158-
else
159-
echo "No lockfile found, using npm install"
160-
npm install
161-
fi
162-
163140
- name: Pull Vercel Environment Information
164141
working-directory: ${{ matrix.project.path }}
165142
env:

0 commit comments

Comments
 (0)