From 604d6ec2dc60e5e81049393872a80b503b19de2e Mon Sep 17 00:00:00 2001 From: Tamir <1tamir198@gmail.com> Date: Mon, 1 Apr 2024 21:59:05 +0300 Subject: [PATCH] Check for ci in test --- .github/workflows/pr-checks.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index bb73d78c..b90d0683 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -32,4 +32,15 @@ jobs: with: node-version: 18.x - run: npm install - - run: npm run build + - run: npm run dev + Run-Playwright-Tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies and run Playwright tests + uses: actions/setup-node@v3 + with: + node-version: 18.x + - run: npm install + - name: Run Playwright tests + run: npm test