mirror of
https://github.com/facebook/react.git
synced 2026-02-24 04:33:04 +00:00
9 lines
156 B
Bash
Executable File
9 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
./node_modules/.bin/grunt jest:coverage
|
|
if [ -z $CI_PULL_REQUEST ]; then
|
|
cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
|
|
fi
|