Skip to content

Commit 044320e

Browse files
committed
install playwright before npm
1 parent 6eaa56a commit 044320e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/verify-storybook-builder.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
node-version: 20
1919
cache: npm
2020

21+
- name: Install Playwright Browsers
22+
run: npx playwright install --with-deps
23+
2124
- name: Install Dependencies
2225
run: npm ci
2326

@@ -27,9 +30,6 @@ jobs:
2730
- name: Symlink built packages binaries (e.g. "wds")
2831
run: npm ci
2932

30-
- name: Install Playwright Browsers
31-
run: npx playwright install --with-deps
32-
3333
- name: Run tests
3434
run: npm run test:storybook-builder
3535

@@ -55,6 +55,9 @@ jobs:
5555
node-version: 20
5656
cache: npm
5757

58+
- name: Install Playwright Browsers
59+
run: npx playwright install --with-deps
60+
5861
- name: Install Dependencies
5962
run: npm ci
6063

@@ -64,9 +67,6 @@ jobs:
6467
- name: Symlink built packages binaries (e.g. "wds")
6568
run: npm ci
6669

67-
- name: Install Playwright Browsers
68-
run: npx playwright install --with-deps
69-
7070
- name: Run tests
7171
run: npm run test:storybook-builder
7272

0 commit comments

Comments
 (0)