From 2406c3414942e46c0777ad50356f76efa44dac9d Mon Sep 17 00:00:00 2001 From: Philippe L'ATTENTION Date: Thu, 22 Feb 2024 19:48:04 +0400 Subject: [PATCH] add playwright to the of the deploy step in CI --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6e7d0eb..53d84c3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -202,7 +202,7 @@ jobs: deploy: name: 🚀 Deploy runs-on: ubuntu-latest - needs: [lint, typecheck, vitest, build] + needs: [lint, typecheck, vitest, build, playwright] # only build/deploy main branch on pushes if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }}