Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

chore(deps): update typescript-eslint monorepo to v8 #2310

chore(deps): update typescript-eslint monorepo to v8

chore(deps): update typescript-eslint monorepo to v8 #2310

Workflow file for this run

name: Validate rendering
on: push
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- 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