We are running this,
steps:
- label: ':npm: Dependencies'
key: dependencies
plugins: *common_plugins
commands:
- npm ci
- label: ':npm: Tests & coverage'
depends_on: [ dependencies ]
plugins: *common_plugins
commands:
- npm run coverage
- label: ':npm: Code style'
depends_on: [ dependencies ]
soft_fail:
- exit_status: 1
plugins: *common_plugins
commands:
- npm run format:check
and facing errors like
Error: The command exited with status 1
Running global post-command hook 0s
Running plugin cache post-command hook 22s
Running global pre-exit hook 0s
Running plugin docker pre-exit hook
Would someone please help with this?