We had a CI job running which linted an emberjs project. The linter exited succesfully with the following message:
$ yarn lint:style
yarn run v1.16.0
$ stylelint 'app/**/*.scss'
Done in 1.37s.
However the runner didn’t quit after that and ended up running 9939 minutes.
Our gitlab-ci:
image: node:alpine
# Cache modules in between jobs
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
before_script:
- apk add --update --no-cache git
- echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories
- echo @edge http://nl.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories
- apk add --no-cache --update chromium nss@edge
- rm testem.js
- cp testem.ci.js testem.js
- npm -g install ember-cli
- yarn
lint:
script:
- yarn lint:js
- yarn lint:hbs
- yarn lint:style
test:
script:
- ember test
Is this an issue with our pipeline? If not can the minutes be reset?