From 9be4508186d3f675c725c1fd6978ea375e36212d Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Mon, 27 Jul 2020 20:33:17 +0900 Subject: [PATCH] fix: ubuntu-*-webkit --- .github/workflows/playwright-example.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright-example.yml b/.github/workflows/playwright-example.yml index 439c5db..63d543a 100644 --- a/.github/workflows/playwright-example.yml +++ b/.github/workflows/playwright-example.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, macos-latest, ubuntu-latest] + os: [windows-latest, macos-latest, ubuntu-20.04] fail-fast: false steps: - uses: actions/checkout@v2 @@ -21,7 +21,7 @@ jobs: restore-keys: yarn- - run: yarn working-directory: ./playwright - - if: matrix.os == 'ubuntu-latest' + - if: startsWith(matrix.os, 'ubuntu-') run: sudo apt-get install libwpewebkit-1.0-dev - run: node main working-directory: ./playwright