Everyone can use
Author: KilWaseCreated Aug 12, 2026Updated Aug 12, 2026
name: Test Enjoy App on: workflow_dispatch: push: branches: - main paths: - "enjoy/" - "yarn.lock" pull_request: branches: - main paths: - "enjoy/" jobs: e2e-test: timeout-minutes: 60 runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-13, macos-15, windows-latest, windows-2019, ubuntu-latest] steps: - uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: "**/node_modules"
key: ${{ matrix.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- name: Install sdl2 for macOS13
if: matrix.os == 'macos-13'
run: |
brew update
brew install sdl2
- name: Package App
shell: bash
env:
NODE_OPTIONS: "--max-old-space-size=8192"
run: |
set -e
yarn enjoy:package
- name: Configure Chrome sandbox for Linux
if: contains(matrix.os, 'ubuntu')
run: |
sudo chown root:root enjoy/out/Enjoy-linux-x64/chrome-sandbox
sudo chmod 4755 enjoy/out/Enjoy-linux-x64/chrome-sandbox
- name: Run main tests with xvfb-run on Ubuntu
# continue-on-error: true
if: contains(matrix.os, 'ubuntu')
env:
DEBUG: pw:browser*
run: |
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn enjoy:test:main
- name: Run main tests on Windows
continue-on-error: true
if: contains(matrix.os, 'windows')
run: yarn enjoy:test:main
- name: Run main tests on macOS
if: contains(matrix.os, 'macos')
run: yarn enjoy:test:main
- name: Run renderer tests with xvfb-run on Ubuntu
# continue-on-error: true
if: contains(matrix.os, 'ubuntu')
run: |
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn enjoy:test:renderer
- name: Run renderer tests on macOS or Windows
if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows')
run: yarn enjoy:test:renderer
# - name: Make App
# run: yarn enjoy:make
- uses: actions/upload-artifact@v4
if: always()
with:
name: ${{matrix.os}}-playwright-report
path: enjoy/playwright-report/
retention-days: 30Source: ZuodaoTech/everyone-can-use-english