File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed
Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments