diff --git a/docusaurus/docs/running-tests.md b/docusaurus/docs/running-tests.md index f43dd43b1a7..22754d4250c 100644 --- a/docusaurus/docs/running-tests.md +++ b/docusaurus/docs/running-tests.md @@ -340,6 +340,28 @@ script: Follow [this article](https://medium.com/@knowbody/circleci-and-zeits-now-sh-c9b7eebcd3c1) to set up CircleCI with a Create React App project. +### AWS CodeBuild + +1. Add a buildspec.yml file to your git repository. + +```yaml +version: 0.2 +env: + variables: + CI: "true" +phases: + install: + commands: + - npm install + build: + commands: + - npm build + - npm test +``` + +1. Trigger your first build with a git push. +1. [Customize your buildspec](https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html) if needed. + ## On your own environment #### Windows (cmd.exe)