Skip to content

chore(deps-dev): bump @types/node from 20.12.11 to 20.12.12 #1497

chore(deps-dev): bump @types/node from 20.12.11 to 20.12.12

chore(deps-dev): bump @types/node from 20.12.11 to 20.12.12 #1497

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