Skip to content

Commit d038a57

Browse files
Stop publishes via Travis & use scheduled heroku runs
1 parent b845e25 commit d038a57

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ cache:
1717
- node_modules
1818
script:
1919
- yarn run test
20-
- if [ "$TRAVIS_PULL_REQUEST" = false ]; then AWS_SHOULD_PUBLISH=yes yarn start; else echo "We dont publish docs via PRs"; fi
2120
branches:
2221
only:
2322
- master

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: yarn run greet

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"scripts": {
1313
"autoformat": "standard --fix index.js lib/*.js",
1414
"start": "node --use-strict index.js",
15-
"test": "standard && mocha test"
15+
"test": "standard && mocha test",
16+
"greet": "echo 'hi'"
1617
},
1718
"author": "Stanley Stuart <[email protected]>",
1819
"license": "MIT",
@@ -64,4 +65,4 @@
6465
"url": "https://github.com/ember-learn/ember-jsonapi-docs/issues"
6566
},
6667
"homepage": "https://github.com/ember-learn/ember-jsonapi-docs#readme"
67-
}
68+
}

0 commit comments

Comments
 (0)