mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 11:15:53 +03:00
11 lines
235 B
Bash
Executable file
11 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
npm run test
|
|
./.travis-test-riot.sh
|
|
|
|
# run the linter, but exclude any files known to have errors or warnings.
|
|
./node_modules/.bin/eslint --max-warnings 0 \
|
|
--ignore-path .eslintignore.errorfiles \
|
|
src test
|