Skip to content

Fix preview for filenames with special characters #10

Fix preview for filenames with special characters

Fix preview for filenames with special characters #10

Workflow file for this run

name: Unit Tests
on:
push:
branches: ["main", "master"]
pull_request:
branches: ["main", "master"]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Test on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests (Linux)
if: runner.os == 'Linux'
run: xvfb-run -a yarn test
- name: Run Tests (Windows/Mac)
if: runner.os != 'Linux'
run: yarn test