Skip to content

Commit

Permalink
Install npm in CI without sudo
Browse files Browse the repository at this point in the history
For Cypress CI integration-tests do not run 'npm install' with 'sudo'.
  • Loading branch information
sbreker committed Aug 23, 2023
1 parent 3f31c4e commit 5e70140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
~/.cache/Cypress
key: npm-${{ hashFiles('package-lock.json') }}
- name: Install NPM dependencies
run: sudo npm install -g npm && npm ci
run: npm install -g npm && npm ci
- name: Modify Gearman config
run: |
echo -e "all:\n servers:\n default: 127.0.0.1:63005" \
Expand Down

0 comments on commit 5e70140

Please sign in to comment.