Skip to content

Commit 3bf2c16

Browse files
committed
remove grunt, karma, etc. - add jshint, jasmine and nyc
1 parent 5962c5b commit 3bf2c16

File tree

13 files changed

+2222
-11358
lines changed

13 files changed

+2222
-11358
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- run:
1616
name: Install Dependencies
1717
command: |
18-
sudo npm install -g grunt-cli codecov
18+
sudo npm install -g codecov
1919
- restore_cache:
2020
key: node-cache-{{ checksum "package-lock.json" }}
2121
- run:
@@ -26,8 +26,11 @@ jobs:
2626
paths:
2727
- ./node_modules
2828
- run:
29-
name: Run tests
30-
command: grunt ci
29+
name: Lint
30+
command: npm run lint
31+
- run:
32+
name: Run test
33+
command: npm test
3134
- run:
3235
name: Push Coverage
3336
command: codecov

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node
1717
uses: actions/setup-node@v2
1818
with:
19-
node-version: '14'
19+
node-version: '16'
2020

2121
- name: Cache dependencies
2222
uses: actions/cache@v2
@@ -27,4 +27,5 @@ jobs:
2727
${{ runner.os }}-node-
2828
2929
- run: npm ci
30-
- run: npm run test-ci
30+
- run: npm run lint
31+
- run: npm test

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ language: node_js
55
node_js:
66
- 'stable'
77
before_script:
8-
- npm install -g grunt-cli codecov
8+
- npm install -g codecov
99
script:
10-
- grunt ci
10+
- npm run lint
11+
- npm test
1112

Gruntfile.js

Lines changed: 0 additions & 76 deletions
This file was deleted.

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Test against the latest version of this Node.js version
22
environment:
33
matrix:
4+
- nodejs_version: "16"
45
- nodejs_version: "15"
56
- nodejs_version: "14"
67
- nodejs_version: "12"
@@ -17,7 +18,9 @@ test_script:
1718
# Output useful info for debugging.
1819
- node --version
1920
- npm --version
20-
# run tests
21+
# lint
22+
- npm run lint
23+
# run test
2124
- npm test
2225

2326
# Don't actually build.

bower.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)