We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b64c66c commit 3f08d70Copy full SHA for 3f08d70
.gitlab-ci.yml
@@ -1,8 +1,10 @@
1
default:
2
- image: registry.gitlab.com/scriptsmith/instamancer:latest
3
- script:
4
- - npm install -g codacy-coverage
5
- - npm install
6
- - npm run build -- --noEmit
7
- - npm run test:ci
8
- - cat ./coverage/lcov.info | codacy-coverage --language=typescript;
+ image: registry.gitlab.com/scriptsmith/instamancer:latest
+ before_script:
+ - npm install -g codacy-coverage
+ script:
+ - npm install
+ - npm run build -- --noEmit
+ - npm run test:ci
9
+ after_script:
10
+ - cat ./coverage/lcov.info | codacy-coverage --language=typescript;
0 commit comments