@@ -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