Skip to content

Run Playwright Tests #14

Run Playwright Tests

Run Playwright Tests #14

Workflow file for this run

name: Run Playwright Tests
on:
workflow_dispatch:
inputs:
release_version:
description: "The release version to use"
required: true
default: "2.0.0"
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Install Build Dependencies & Make Build
run: |
cd build
export RELEASE_VERSION=${{ github.event.inputs.release_version }}
npm install && npm run build:release
- name: Run Tests
run: npm run tests