Commit ab045f33 authored by Dave Machado's avatar Dave Machado
Browse files

Update main script and Travis config

parent 3448c6cb
language: node_js
nguage: node_js
notifications:
email: false
before_install:
......@@ -8,8 +8,8 @@ install:
before_script:
- cd build
script:
- main.sh
- ./main.sh
after_success:
- build.sh
- deploy.sh
- ./build.sh
- ./deploy.sh
#!/bin/bash
echo "running format validation..."
./validate.rb ../README.md
if ["$?" == 0]; then
echo "format validation PASSED"
else
echo "format validation FAILED"
fi
if [ "$TRAVIS_BRANCH" == "master" ]
then
echo "running link validation..."
awesome_bot README.md --allow-ssl --allow 403,302
fi
./validate.rb ../README.md
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment