Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docusaurus/docs/running-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down