Skip to content

Bump systeminformation from 5.17.9 to 5.21.8 #290

Bump systeminformation from 5.17.9 to 5.21.8

Bump systeminformation from 5.17.9 to 5.21.8 #290

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node / npm env and install deps
uses: ./.github/workflows/reusable/env-setup
- name: Build
run: |
npm run build:libs
npm run build:demos
- name: Warmup pm2
run: npx pm2 list
- name: Install Playwright Browsers
uses: ./.github/workflows/reusable/playwright-browsers
- name: Run Playwright tests
run: npm run start:e2e
- name: Cleanup
if: always()
run: npm run stop:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-results
path: playwright-results/
retention-days: 30