add circleci (#3312)

This commit is contained in:
Carlos Tadeu Panato Junior 2019-09-25 02:06:31 +02:00 committed by Miguel Alatzar
parent d9a3f6f20a
commit ca6495187f

23
.circleci/config.yml Normal file
View file

@ -0,0 +1,23 @@
version: 2.1
jobs:
test:
working_directory: ~/mattermost-mobile
docker:
- image: circleci/node:10
steps:
- checkout
- run: |
echo assets/base/config.json
cat assets/base/config.json
# Avoid installing pods
touch .podinstall
# Run tests
make test || exit 1
workflows:
version: 2
pr-test:
jobs:
- test