-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from dhershman1/development
Development v3.2.3
- Loading branch information
Showing
25 changed files
with
4,009 additions
and
5,187 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ orbs: | |
jobs: | ||
build: | ||
docker: | ||
- image: circleci/node:10.5 | ||
- image: circleci/node:14.15 | ||
|
||
working_directory: ~/phonefns | ||
|
||
|
@@ -42,6 +42,48 @@ jobs: | |
- run: | ||
name: Check Coverage | ||
command: npm run check-cov | ||
docs: | ||
docker: | ||
# specify the version you desire here | ||
- image: circleci/node:14.15 | ||
working_directory: ~/phonefns | ||
steps: | ||
- checkout | ||
|
||
#Install deps | ||
- run: | ||
name: Install Dependencies | ||
command: npm ci | ||
|
||
# Build docs | ||
- run: | ||
name: Build docs | ||
command: npm run docs | ||
|
||
- persist_to_workspace: | ||
root: . | ||
paths: | ||
- docs/* | ||
docs-deploy: | ||
docker: | ||
- image: circleci/node:14.15 | ||
working_directory: ~/phonefns | ||
steps: | ||
- checkout | ||
- attach_workspace: | ||
at: ~/phonefns | ||
- add_ssh_keys: | ||
fingerprints: | ||
- "19:50:ad:f5:95:2f:b3:82:5b:4d:4b:30:45:2e:d3:38" | ||
- run: | ||
name: Install gh-pages and Configure | ||
command: | | ||
npm i -D gh-pages | ||
git config user.email "[email protected]" | ||
git config user.name "ci-build" | ||
- run: | ||
name: Deploy Docs | ||
command: npm run docs:deploy | ||
workflows: | ||
version: 2 | ||
main: | ||
|
@@ -52,3 +94,18 @@ workflows: | |
only: | ||
- master | ||
- development | ||
ignore: gh-pages | ||
deploy_docs: | ||
jobs: | ||
- docs: | ||
filters: | ||
branches: | ||
only: master | ||
ignore: gh-pages | ||
- docs-deploy: | ||
requires: | ||
- docs | ||
filters: | ||
branches: | ||
only: master | ||
ignore: gh-pages |
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,3 +1,5 @@ | ||
docs/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
@@ -56,4 +58,3 @@ typings/ | |
|
||
# dotenv environment variables file | ||
.env | ||
|
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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.