-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Buildkite and Docker for CI (#4)
- Loading branch information
1 parent
2f06db9
commit 3bab967
Showing
6 changed files
with
34 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
steps: | ||
- name: ":docker: :package:" | ||
plugins: | ||
docker-compose#v1.5.2: | ||
build: probot-app-pr-title | ||
image-repository: 296822479253.dkr.ecr.us-east-2.amazonaws.com/fusionjs | ||
- wait | ||
- name: ":eslint:" | ||
command: "yarn lint" | ||
plugins: | ||
docker-compose#v1.5.2: | ||
run: probot-app-pr-title | ||
- name: ":jest:" | ||
command: "yarn jest" | ||
plugins: | ||
docker-compose#v1.5.2: | ||
run: probot-app-pr-title |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM node:8.9.0 | ||
|
||
WORKDIR /probot-app-pr-title | ||
|
||
COPY package.json yarn.lock /probot-app-pr-title/ | ||
|
||
RUN yarn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: '2' | ||
services: | ||
probot-app-pr-title: | ||
build: . | ||
volumes: | ||
- .:/probot-app-pr-title | ||
- /probot-app-pr-title/node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters