Skip to content

Commit b58c62a

Browse files
committed
remove coveralls from Grunt
1 parent 0641c53 commit b58c62a

File tree

4 files changed

+203
-669
lines changed

4 files changed

+203
-669
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
version: 2.1
22

3+
orbs:
4+
coveralls: coveralls/[email protected]
5+
36
jobs:
47
build:
58
docker:
@@ -28,6 +31,7 @@ jobs:
2831
- run:
2932
name: Push Coverage
3033
command: codecov
34+
- coveralls/upload
3135

3236
workflows:
3337
version: 2

Gruntfile.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ module.exports = function (grunt) {
1616
// Project configuration.
1717
grunt.initConfig({
1818
pkg : grunt.file.readJSON('package.json'),
19-
coveralls : {
20-
options : {
21-
force : true
22-
},
23-
lib : {
24-
src : 'coverage/report-lcov/lcov.info'
25-
}
26-
},
2719
karma : {
2820
options : {
2921
configFile : 'test/karma.conf.js',
@@ -80,5 +72,5 @@ module.exports = function (grunt) {
8072
grunt.registerTask('continuous', ['jshint', 'karma:continuous']);
8173

8274
// CI task
83-
grunt.registerTask('ci', ['jshint', 'karma:ci', 'coveralls']);
75+
grunt.registerTask('ci', ['jshint', 'karma:ci']);
8476
};

0 commit comments

Comments
 (0)