-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix e2e test for async refactor branch (#49)
additionally replaces travis with circle ci
- Loading branch information
1 parent
b63ab6d
commit 3d828d5
Showing
3 changed files
with
29 additions
and
3 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,18 @@ | ||
version: 2.0 | ||
jobs: | ||
test: | ||
docker: | ||
- image: hafizalfaza/node-go-sqip | ||
steps: | ||
- run: node --version | ||
- run: npm --version | ||
- checkout | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "package.json" }} | ||
- run: npm install | ||
- run: npm test | ||
workflows: | ||
version: 2 | ||
build_and_test: | ||
jobs: | ||
- test |
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,8 @@ | ||
FROM circleci/node:8 | ||
RUN sudo wget https://dl.google.com/go/go1.12.linux-amd64.tar.gz | ||
RUN sudo tar -xvf go1.12.linux-amd64.tar.gz | ||
RUN sudo mv go /usr/local | ||
ENV GOROOT=/usr/local/go | ||
ENV PATH=$GOROOT/bin:$PATH | ||
RUN go version | ||
RUN node -v |
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