Job to install npm packages.
(self)
| 61 | |
| 62 | @job("run `npm ci`") |
| 63 | def npm(self): |
| 64 | """Job to install npm packages.""" |
| 65 | os.chdir(self.main) |
| 66 | run_command_with_process("npm ci") |
| 67 | |
| 68 | @job("build the renderer in dev mode") |
| 69 | def watch(self): |
no test coverage detected