プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: ubuntu-*-webkit

Kohei Watanabe (Jul 27, 2020, 8:33 PM +0900) 9be45081 f8d98a6a

+2 -2
+2 -2
.github/workflows/playwright-example.yml
··· 8 8 runs-on: ${{ matrix.os }} 9 9 strategy: 10 10 matrix: 11 - os: [windows-latest, macos-latest, ubuntu-latest] 11 + os: [windows-latest, macos-latest, ubuntu-20.04] 12 12 fail-fast: false 13 13 steps: 14 14 - uses: actions/checkout@v2 ··· 21 21 restore-keys: yarn- 22 22 - run: yarn 23 23 working-directory: ./playwright 24 - - if: matrix.os == 'ubuntu-latest' 24 + - if: startsWith(matrix.os, 'ubuntu-') 25 25 run: sudo apt-get install libwpewebkit-1.0-dev 26 26 - run: node main 27 27 working-directory: ./playwright