如何在 Jenkins 中显示“npm lint”结果?我知道如何在 Jenkins 中显示“pytest”结果:
- 像这样运行pytest:
pytest --junitxml=./path/to/pytestFile.xml ./path/to/code
- 运行这个 Jenkins 命令:
junit testResults: "./path/to/pytestFile.xml"
一旦我这样做了,我的测试结果就会出现在 Jenkins 的“测试结果”窗口中。我想对我的 angular lint 结果做类似的事情。我试过这样做,但没有奏效:
- 像这样运行 linter:
npm lint --junitxml=./path/to/lintFile.xml
- 运行这个 Jenkins 命令:
junit testResults: "./path/to/lintFile.xml"
问题是 npm 没有 --junitxml 开关。我怎样才能做到这一点?我正在使用 Jenkins 声明性管道。