Skip to content

Test UI

Test UI #6

Workflow file for this run

name: Test UI
on:
workflow_dispatch:
jobs:
test-ubuntu:
name: Build the repository on Ubuntu
runs-on: ubuntu-latest
steps:
# Make sure build is clean and no files from a previous run are re-used.
- name: Cleanup files before run
run: |
rm -rf *
if: ${{ always() }}
- name: Checkout
uses: actions/[email protected]
- name: Use Node.js 20
uses: actions/[email protected]
with:
node-version: 20.x
cache: 'yarn'
- name: Install node packages
run: yarn install
- name: Install dpkg, fakeroot and rpm
run: |
sudo apt-get update -y
sudo apt-get install -y dpkg fakeroot rpm
- name: Provide 777 execution rights to clipboard handler script
run: |
sudo chmod 777 node_modules/clipboard-event/platform/clipboard-event-handler-linux
- name: Set JAPREADER_ENV to 'production'
run: export JAPREADER_ENV=production
- name: Set NODE_ENV to 'production'
run: export NODE_ENV=production
- name: Package
run: yarn package
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: yarn test:ui
- name: Upload a Test Artifact
if: always()
uses: actions/[email protected]
with:
name: playwright-output
path: test-results
retention-days: 28