Skip to content

Commit

Permalink
fix: do not install deps using sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
peschee committed Oct 20, 2023
1 parent 43ff014 commit 6eecc23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: npm run --if-present postinstall && npm rebuild && npm run prepare --if-present

- name: Test
run: sudo npx playwright install-deps && sudo npx playwright install && npm run test:ci
run: npx playwright install-deps && npx playwright install && npm run test:ci
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: npm run lint

- name: Test
run: sudo npx playwright install-deps && sudo npx playwright install && npm run test:ci
run: npx playwright install-deps && npx playwright install && npm run test:ci

- name: Publish Code Coverage
uses: paambaati/codeclimate-action@4cace242c6e0a2dd554bbb3cc12c58047d8af3e5 # v5.0.0
Expand Down

0 comments on commit 6eecc23

Please sign in to comment.