-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sam Harrison
committed
Apr 30, 2020
1 parent
1246402
commit 60b6021
Showing
7 changed files
with
34 additions
and
77 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 |
---|---|---|
|
@@ -5,8 +5,7 @@ test/config.js | |
.env* | ||
*.log | ||
.vscode/ | ||
prism_darwin_amd64 | ||
prism/ | ||
prism | ||
package-lock.json | ||
yarn.lock | ||
*.bak | ||
|
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,9 @@ | ||
ARG version=lts | ||
FROM node:$version | ||
|
||
ENV NODE_TLS_REJECT_UNAUTHORIZED 0 | ||
|
||
WORKDIR /app | ||
COPY . . | ||
|
||
RUN make install |
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 |
---|---|---|
@@ -1,13 +1,22 @@ | ||
.PHONY: clean install test | ||
.PHONY: clean install test test-integ test-docker | ||
|
||
clean: | ||
@rm -rf node_modules | ||
|
||
install: clean | ||
npm install | ||
npx lerna bootstrap | ||
./node_modules/.bin/lerna bootstrap | ||
|
||
test: install | ||
test: | ||
yarn test:files | ||
yarn test:license | ||
yarn test:typescript | ||
|
||
test-integ: test | ||
yarn test:mail | ||
yarn test:client | ||
yarn test:helpers | ||
yarn lint | ||
|
||
test-docker: | ||
curl -s https://raw.githubusercontent.com/sendgrid/sendgrid-oai/master/prism/prism.sh | bash |
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
This file was deleted.
Oops, something went wrong.