Skip to content

Commit 8565830

Browse files
committed
fix for workflows
1 parent 11f8d46 commit 8565830

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,4 @@ jobs:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
2929
- run: npm install
30-
- run: npm run build --if-present
31-
- run: npm test
30+
- run: npm run ci

.travis.yml

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

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
"perf": "node perf/index.js",
1010
"test-local": "mocha test/**/*.test.js",
1111
"test-cov": "nyc npm run test-local",
12-
"test-report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
13-
"ci": "npm run lint && npm run test-cov && npm run test-report",
12+
"ci": "npm run lint && npm run test-cov",
1413
"release": "npm test && npm-ensure -t changelog && git release $npm_package_version && npm publish",
1514
"precommit": "standard && npm-ensure -t deps"
1615
},

0 commit comments

Comments
 (0)