From 93b350c4701a7395511051f15be9d233465f790d Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Mon, 30 Sep 2019 16:48:37 -0700 Subject: [PATCH] chore: remove TravisCI Fixes: https://github.com/aws/aws-sdk-js-v3/issues/346 Enabled github-codebuild-logs to make CodeBuild logs accessible Refs: https://github.com/jlhood/github-codebuild-logs --- .travis.yml | 9 --------- buildspec.yml | 3 +++ 2 files changed, 3 insertions(+), 9 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1158dadae59eb..0000000000000 --- a/.travis.yml +++ /dev/null @@ -1,9 +0,0 @@ -language: node_js -node_js: - - "10.9.0" -install: - - yarn -script: - - yarn test -after_success: - - ./node_modules/.bin/codecov -f coverage/*.json diff --git a/buildspec.yml b/buildspec.yml index 1a41e03ac6fcc..a2466d7b423b9 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -12,3 +12,6 @@ phases: commands: - echo Executing unit tests - yarn test + post_build: + commands: + - ./node_modules/.bin/codecov -f coverage/*.json