Skip to content

Commit b8300f5

Browse files
Copilot0xrinegade
andcommitted
Replace npm ci with yarn install in comprehensive E2E testing workflow
Co-authored-by: 0xrinegade <[email protected]>
1 parent 17453bb commit b8300f5

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/comprehensive-e2e-testing.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
uses: actions/setup-node@v4
5959
with:
6060
node-version: '20'
61-
cache: 'npm'
61+
cache: 'yarn'
6262

6363
- name: Install dependencies
64-
run: npm ci --legacy-peer-deps
64+
run: yarn install --frozen-lockfile
6565

6666
- name: Install Playwright browsers
6767
run: npx playwright install ${{ matrix.browser }} --with-deps
@@ -111,10 +111,10 @@ jobs:
111111
uses: actions/setup-node@v4
112112
with:
113113
node-version: '20'
114-
cache: 'npm'
114+
cache: 'yarn'
115115

116116
- name: Install dependencies
117-
run: npm ci --legacy-peer-deps
117+
run: yarn install --frozen-lockfile
118118

119119
- name: Install Playwright
120120
run: npx playwright install chromium --with-deps
@@ -156,10 +156,10 @@ jobs:
156156
uses: actions/setup-node@v4
157157
with:
158158
node-version: '20'
159-
cache: 'npm'
159+
cache: 'yarn'
160160

161161
- name: Install dependencies
162-
run: npm ci --legacy-peer-deps
162+
run: yarn install --frozen-lockfile
163163

164164
- name: Install Playwright
165165
run: npx playwright install chromium --with-deps
@@ -210,10 +210,10 @@ jobs:
210210
uses: actions/setup-node@v4
211211
with:
212212
node-version: '20'
213-
cache: 'npm'
213+
cache: 'yarn'
214214

215215
- name: Install dependencies
216-
run: npm ci --legacy-peer-deps
216+
run: yarn install --frozen-lockfile
217217

218218
- name: Install Playwright
219219
run: npx playwright install chromium --with-deps
@@ -254,10 +254,10 @@ jobs:
254254
uses: actions/setup-node@v4
255255
with:
256256
node-version: '20'
257-
cache: 'npm'
257+
cache: 'yarn'
258258

259259
- name: Install dependencies
260-
run: npm ci --legacy-peer-deps
260+
run: yarn install --frozen-lockfile
261261

262262
- name: Install Playwright and accessibility tools
263263
run: |
@@ -304,10 +304,10 @@ jobs:
304304
uses: actions/setup-node@v4
305305
with:
306306
node-version: '20'
307-
cache: 'npm'
307+
cache: 'yarn'
308308

309309
- name: Install dependencies
310-
run: npm ci --legacy-peer-deps
310+
run: yarn install --frozen-lockfile
311311

312312
- name: Install Playwright browsers
313313
run: npx playwright install ${{ matrix.browser }} --with-deps
@@ -426,10 +426,10 @@ jobs:
426426
uses: actions/setup-node@v4
427427
with:
428428
node-version: '20'
429-
cache: 'npm'
429+
cache: 'yarn'
430430

431431
- name: Install dependencies
432-
run: npm ci --legacy-peer-deps
432+
run: yarn install --frozen-lockfile
433433

434434
- name: Install Playwright
435435
run: npx playwright install chromium --with-deps

0 commit comments

Comments
 (0)