Skip to content

Commit fc9ba62

Browse files
committedMar 12, 2022
Add ci-test that doesn't run karma
1 parent 8965079 commit fc9ba62

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: npm install, build, and test
2121
run: |
2222
npm install
23-
npm test
23+
npm ci-test
2424
env:
2525
CI: true

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"typescript": "tsc --checkJS --allowJS --noEmit src/index.js",
1919
"lint": "eslint src && npm run closure && npm run typescript",
2020
"test": "npm run lint && mocha && karma start --single-run",
21+
"ci-test": "npm run lint && mocha",
2122
"prebuild": "rimraf lib dist",
2223
"build": "run-p build:**",
2324
"build:cjs": "rollup -i src/index.js -o lib/index.js -f cjs",

0 commit comments

Comments
 (0)
Please sign in to comment.