Skip to content

Commit 91cfd41

Browse files
Add build step for Renderer package in CI workflow
- Introduced a new step to build the Renderer package before running JS unit tests in the GitHub Actions workflow. - This change ensures that the latest build is tested, improving the reliability of the CI process.
1 parent b4870aa commit 91cfd41

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/package-js-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,7 @@ jobs:
3636
run: |
3737
yarn install --no-progress --no-emoji ${{ matrix.node-version == '22' && '--frozen-lockfile' || '' }}
3838
sudo yarn global add yalc
39+
- name: Build Renderer package
40+
run: yarn build
3941
- name: Run JS unit tests for Renderer package
4042
run: yarn test

0 commit comments

Comments
 (0)