This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
chore(deps): update dependency conventional-recommended-bump to v8 #785
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate rendering | |
on: push | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- run: yarn | |
- name: build filterpane | |
working-directory: packages/sn-filter-pane | |
run: | | |
yarn | |
yarn build | |
- run: yarn playwright install --with-deps | |
- run: yarn run test:rendering | |
id: rendering | |
- uses: actions/upload-artifact@v3 | |
if: ${{ failure() && steps.rendering.conclusion == 'failure' }} | |
with: | |
name: rendering-output | |
path: test/rendering/reports/ | |
retention-days: 3 | |
- run: yarn run test:integration | |
id: integration | |
- uses: actions/upload-artifact@v3 | |
if: ${{ failure() && steps.integration.conclusion == 'failure' }} | |
with: | |
name: integration-output | |
path: test/integration/reports/ | |
retention-days: 3 |