Skip to content

Commit d874a7d

Browse files
committed
feat: Changed command to be one line
1 parent 6cb4b77 commit d874a7d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ jobs:
1717
# Checkout the repository so the workflow has access to the code
1818
- name: Checkout code
1919
uses: actions/checkout@v3
20-
- name: Install dependencies
21-
run: cd tests && npm ci
2220
- name: Setup Hugo
2321
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v3.0.0
2422
with:
2523
hugo-version: "0.134.2"
2624
extended: true
27-
- name: Install Playwright browsers
28-
run: npx playwright install --with-deps
25+
- name: Install dependencies and playwright browsers
26+
run: cd tests && npm ci && npx playwright install --with-deps
2927
- name: Run Playwright tests
3028
id: test-visual
3129
run: |

0 commit comments

Comments
 (0)