Skip to content

Merge branch 'release/2024-05-15' into develop #1492

Merge branch 'release/2024-05-15' into develop

Merge branch 'release/2024-05-15' into develop #1492

name: UI tests for Showcase app
on: [push]
jobs:
build:
name: Build and run UI tests
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build Showcase app
run: yarn build:showcase
- name: Install Playwright browsers
run: yarn workspace @furystack/shades-showcase-app e2e install --with-deps
- name: execute tests
run: yarn workspace @furystack/shades-showcase-app e2e test
- uses: actions/upload-artifact@v2
if: failure()
with:
path: packages/shades-showcase-app/test-results
name: Download-screenshots