Skip to content

Commit 74ba17c

Browse files
Copilot0xrinegade
andcommitted
Fix GitHub Actions workflow to use yarn instead of npm ci
Co-authored-by: 0xrinegade <[email protected]>
1 parent 31f962a commit 74ba17c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
uses: actions/setup-node@v4
4343
with:
4444
node-version: '18'
45-
cache: 'npm'
45+
cache: 'yarn'
4646

4747
- name: Install dependencies
48-
run: npm ci
48+
run: yarn install --frozen-lockfile
4949

5050
- name: Install Playwright browsers
5151
run: npx playwright install --with-deps ${{ matrix.browser }}
@@ -129,10 +129,10 @@ jobs:
129129
uses: actions/setup-node@v4
130130
with:
131131
node-version: '18'
132-
cache: 'npm'
132+
cache: 'yarn'
133133

134134
- name: Install dependencies
135-
run: npm ci
135+
run: yarn install --frozen-lockfile
136136

137137
- name: Install Playwright browsers
138138
run: npx playwright install --with-deps chromium
@@ -190,10 +190,10 @@ jobs:
190190
uses: actions/setup-node@v4
191191
with:
192192
node-version: '18'
193-
cache: 'npm'
193+
cache: 'yarn'
194194

195195
- name: Install dependencies
196-
run: npm ci
196+
run: yarn install --frozen-lockfile
197197

198198
- name: Install Playwright browsers
199199
run: npx playwright install --with-deps chromium webkit
@@ -231,10 +231,10 @@ jobs:
231231
uses: actions/setup-node@v4
232232
with:
233233
node-version: '18'
234-
cache: 'npm'
234+
cache: 'yarn'
235235

236236
- name: Install dependencies
237-
run: npm ci
237+
run: yarn install --frozen-lockfile
238238

239239
- name: Install Playwright browsers
240240
run: npx playwright install --with-deps chromium

0 commit comments

Comments
 (0)