mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* Group more test npm scripts into `test:` * Update documentations on the development workflow * Update .travis.yml to match updated NPM scripts * Run npm install in Travis
22 lines
423 B
YAML
22 lines
423 B
YAML
language: node_js
|
|
node_js:
|
|
- stable
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
sudo: required
|
|
services:
|
|
- docker
|
|
before_script:
|
|
- docker pull selenium/standalone-firefox:2.48.2
|
|
- docker pull selenium/standalone-chrome:2.48.2
|
|
- docker images --no-trunc
|
|
install:
|
|
- npm install
|
|
- npm ls || true
|
|
- npm install -g codecov
|
|
script:
|
|
- npm test
|
|
- npm run test:jest:coverage && codecov
|
|
- npm run test:screenshots
|