Skip to content

Commit 34f0a7a

Browse files
authored
Merge pull request #397 from convertcom/fix/pages-build-and-playwright
fix(ci): build before test and install Playwright browsers in pages workflow
2 parents d78455e + a12beae commit 34f0a7a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/pages.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,16 @@ jobs:
3535
- name: Installing npm packages
3636
run: yarn install --immutable
3737

38+
- name: Install Playwright browsers
39+
run: |
40+
cd packages/js-sdk
41+
yarn playwright install --with-deps chromium
42+
3843
- name: Generating coverage and docs
3944
run: |
4045
cd packages/js-sdk
41-
yarn test
4246
yarn build
47+
yarn test
4348
4449
- name: Checkout gh-pages
4550
uses: actions/checkout@v3

0 commit comments

Comments
 (0)