Skip to content

Commit fd9d9ac

Browse files
nandan-bhattusharpandey13
authored andcommitted
Testing playwright workflow (#1909)
1 parent d68f978 commit fd9d9ac

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/playwright.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: Playwright Tests
22
on:
33
push:
4-
branches: [ main, master ]
4+
branches: [main, master]
55
pull_request:
6-
branches: [ main, master ]
6+
branches: [main, master]
77
jobs:
88
test:
9+
if: false # Disable this job temporarily. TODO: Fix this workflow
910
timeout-minutes: 60
1011
runs-on: ubuntu-latest
1112
steps:
@@ -17,6 +18,12 @@ jobs:
1718
run: npm install -g pnpm && pnpm install
1819
- name: Install Playwright Browsers
1920
run: pnpm exec playwright install --with-deps
21+
22+
- name: Run build step
23+
uses: ./.github/actions/build
24+
with:
25+
node: 22
26+
2027
- name: Run Playwright tests
2128
run: pnpm exec playwright test
2229
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)