We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8965079 commit fc9ba62Copy full SHA for fc9ba62
.github/workflows/tests.yml
@@ -20,6 +20,6 @@ jobs:
20
- name: npm install, build, and test
21
run: |
22
npm install
23
- npm test
+ npm ci-test
24
env:
25
CI: true
package.json
@@ -18,6 +18,7 @@
18
"typescript": "tsc --checkJS --allowJS --noEmit src/index.js",
19
"lint": "eslint src && npm run closure && npm run typescript",
"test": "npm run lint && mocha && karma start --single-run",
+ "ci-test": "npm run lint && mocha",
"prebuild": "rimraf lib dist",
"build": "run-p build:**",
"build:cjs": "rollup -i src/index.js -o lib/index.js -f cjs",
0 commit comments