Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
23 | public function getTravisBeforeScript(): ?string |
||
24 | { |
||
25 | return 'sudo apt remove -y nodejs && curl ' |
||
26 | . '-sL https://deb.nodesource.com/setup_14.x -o nodesource_setup.sh && sudo bash nodesource_setup.sh ' |
||
27 | . '&& sudo apt install -y build-essential nodejs && which npm && npm install [email protected]'; |
||
28 | } |
||
63 |