Skip to content

Commit 4c55544

Browse files
authored
Use playwright CLI directly from node_modules/.bin (graphql#2144)
1 parent ddbbf35 commit 4c55544

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
# since the amount of time it takes to restore the cache is
4545
# comparable to the time it takes to download the binaries"
4646
- name: Install Playwright Browsers
47-
run: npx playwright install --with-deps
47+
run: ./node_modules/.bin/playwright install --with-deps
4848

4949
- name: Run Playwright tests
50-
run: npx playwright test
50+
run: ./node_modules/.bin/playwright test
5151

5252
- uses: actions/upload-artifact@v4
5353
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)