From 78085c2940c3d48e144326ab8786a608cd9e1529 Mon Sep 17 00:00:00 2001 From: Ewan Fox Date: Wed, 16 Aug 2023 04:24:26 -0400 Subject: Revert and Fix! --- .github/workflows/playwright.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a8127388..7d617c3a 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -10,14 +10,17 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Remove all fonts + run: rm -rf /usr/share/fonts + - uses: actions/checkout@v3 + - name: Install CJK fonts uses: awalsh128/cache-apt-pkgs-action@1850ee53f6e706525805321a3f2f863dcf73c962 # v1.3.0 with: - packages: fonts-noto-cjk + packages: fonts-ipafont-mincho execute_install_scripts: true - + - uses: actions/setup-node@v3 with: cache: "npm" @@ -37,7 +40,8 @@ jobs: - if: ${{ steps.cache-playwright.outputs.cache-hit != 'true' }} name: Install Playwright Browsers run: npx playwright install --with-deps chromium - + - name: Check Available Fonts + run: fc-list - name: Grab latest dictionaries from dictionaries branch uses: actions/checkout@v3 with: -- cgit v1.2.3 From 694ca9d01d586162a49ab46d5985d589da327497 Mon Sep 17 00:00:00 2001 From: Ewan Fox Date: Wed, 16 Aug 2023 16:08:04 -0400 Subject: Remove font check --- .github/workflows/playwright.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 7d617c3a..9397e4fa 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -40,8 +40,7 @@ jobs: - if: ${{ steps.cache-playwright.outputs.cache-hit != 'true' }} name: Install Playwright Browsers run: npx playwright install --with-deps chromium - - name: Check Available Fonts - run: fc-list + - name: Grab latest dictionaries from dictionaries branch uses: actions/checkout@v3 with: -- cgit v1.2.3