From 6a5e11f23041c7bb0b63ecc4dd66ecf8d62f7236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E?= Date: Fri, 22 Oct 2021 20:01:06 +0800 Subject: [PATCH] Install playwright deps before tests --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b7d587..c454d7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,4 +32,5 @@ jobs: cache: 'npm' node-version: 14 - run: npm ci + - run: npx playwright install --with-deps ${{ matrix.browser }} - run: npm run test-${{ matrix.browser }}