Skip to content

Commit

Permalink
try stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dmail committed Aug 21, 2024
1 parent 29ec58d commit e391574
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci_test_workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,20 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# sudo ulimit should prevent npm link failure
- name: set linux fs limits
if: runner.os == 'Linux'
run: |
sudo sysctl fs.inotify.max_user_watches=524288
sudo sysctl -p
sudo sh -c "ulimit -n 65536 && exec su $LOGNAME"
ulimit -n
# sudo ulimit should prevent npm link failure
- name: Put $HOME in env
if: runner.os == 'windows'
run: echo "HOME=$HOME | Out-File -FilePath $env:GITHUB_ENV -Append
- name: Echo $HOME
if: runner.os == 'windows'
run: echo $HOME
- name: Install node modules
run: npm install
env:
Expand Down

0 comments on commit e391574

Please sign in to comment.