mattermost-mobile/.circleci/config.yml
Carlos Tadeu Panato Junior ca6495187f add circleci (#3312)
2019-09-24 17:06:31 -07:00

23 lines
409 B
YAML

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