mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-21 21:16:20 +02:00
Update main script and Travis config
This commit is contained in:
parent
3448c6cb0d
commit
ab045f33f3
2 changed files with 14 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
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
|
||||
|
||||
|
|
|
@ -1,8 +1,16 @@
|
|||
#!/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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue