Added an extra GitHub action to run SLMessage tests

This commit is contained in:
2020-06-08 22:21:06 -05:00
parent cd981c19ef
commit 219ce110ea
2 changed files with 3 additions and 1 deletions

View File

@ -27,3 +27,4 @@ jobs:
- run: npm ci
- run: npm run build --if-present
- run: npm run pretest
- run: npm run test-slmessage

View File

@ -21,6 +21,7 @@
},
"scripts": {
"test": "mocha test/*.spec.js",
"pretest": "eslint --ignore-path .gitignore ."
"pretest": "eslint --ignore-path .gitignore .",
"test-slmessage": "mocha test/slmessage.spec.js"
}
}