Skip to content

Commit 58237e5

Browse files
Merge pull request #21 from malgorzatatanska/feat/app-version-component
playwright action
2 parents f9dfad4 + b4d362f commit 58237e5

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/deploy-vercel.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,19 @@ jobs:
3232
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
3333
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
3434
test:
35+
needs: deploy
3536
timeout-minutes: 60
3637
runs-on: ubuntu-latest
37-
needs: deploy
3838
steps:
39-
- name: Run playwright test
40-
uses: ./.github/actions/playwright
39+
- uses: actions/checkout@v4
40+
- uses: actions/setup-node@v4
41+
with:
42+
node-version: 18
43+
- name: Install dependencies
44+
run: npm ci
45+
- name: Install Playwright
46+
run: npx playwright install --with-deps
47+
- name: Run Playwright tests
48+
run: npx playwright test
49+
env:
50+
PLAYWRIGHT_TEST_BASE_URL: 'https://przeprogramowani-frontend-bootstrap.vercel.app/'

0 commit comments

Comments
 (0)