Skip to content

Commit

Permalink
Merge pull request #95 from rwjblue/remove-travis-yml
Browse files Browse the repository at this point in the history
Remove .travis.yml from newly generated projects.
  • Loading branch information
rwjblue authored Sep 24, 2020
2 parents 4665051 + 690e6d5 commit 8149644
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
29 changes: 0 additions & 29 deletions commands/global/new.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,35 +145,6 @@ module.exports.handler = async function handler(options) {
`
);

fs.outputFileSync(
projectName + '/.travis.yml',
stripIndent`
---
language: node_js
node_js:
- "8"
sudo: false
dist: trusty
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn lint
- yarn test:coverage
after_success:
- yarn coveralls
`
);
fs.outputFileSync(
projectName + '/.github/workflows/ci.yml',
stripIndent`
Expand Down
1 change: 0 additions & 1 deletion tests/cli-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ QUnit.module('codemod-cli', function(hooks) {
'ember-qunit-codemod/.github/workflows/ci.yml',
'ember-qunit-codemod/.gitignore',
'ember-qunit-codemod/.prettierrc',
'ember-qunit-codemod/.travis.yml',
'ember-qunit-codemod/README.md',
'ember-qunit-codemod/bin/',
'ember-qunit-codemod/bin/cli.js',
Expand Down

0 comments on commit 8149644

Please sign in to comment.