We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f9dfad4 + b4d362f commit 58237e5Copy full SHA for 58237e5
.github/workflows/deploy-vercel.yml
@@ -32,9 +32,19 @@ jobs:
32
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
33
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
34
test:
35
+ needs: deploy
36
timeout-minutes: 60
37
runs-on: ubuntu-latest
- needs: deploy
38
steps:
39
- - name: Run playwright test
40
- uses: ./.github/actions/playwright
+ - uses: actions/checkout@v4
+ - 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