-
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.
* feat(quality-gates): Add spell checking job * feat(quality-gates): add api linting job * chore: update node version * chore: rename cspell config file * chore: fix typos and extend custom-words * chore: fix typos and exclusions * chore: adjust job execution logic for linting skip * chore: change how key is passed to SHUB CLI * chore: jq parse issue * chore: change file endlines to LF * chore: set debug * chore: modify script to deal with jq parsing * chore: set debug for action output * chore: add environment * feat(quality-gates): create utilities script * chore: log message level * feat(quality-gates): update ReadMe with job info
- Loading branch information
1 parent
270bc0d
commit c8b8d3e
Showing
10 changed files
with
217 additions
and
90 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,19 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"dictionaries": [ | ||
"custom-words" | ||
], | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "custom-words", | ||
"path": "./custom-words.txt", | ||
"description": "Custom dictionary for specific words that are common and correct within our Portal documentation" | ||
} | ||
], | ||
"ignorePaths": [ | ||
"**/node_modules/**", | ||
"**/dist/**" | ||
] | ||
} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
APIKEY | ||
Arazzo | ||
DevRel | ||
fontname | ||
Kilcommins | ||
Lato | ||
Merriweather | ||
petco | ||
petcopetstore | ||
Petstore | ||
Playfair | ||
Roboto | ||
SmartBear | ||
SWAGGERHUB |
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,53 +1,54 @@ | ||
{ | ||
"productMetadata": { | ||
"description": "This product gives the ability to programmatically embedded a Pet adoption workflow into your application 🐶", | ||
"slug": "pet-adoptions", | ||
"public": true, | ||
"hidden": false, | ||
"logo": "images/AdoptionsAPI.png", | ||
"logoDark": "", | ||
"autoPublish": true | ||
}, | ||
"contentMetadata": [ | ||
{ | ||
"order": 0, | ||
"parent": "", | ||
"name": "Getting Started with Pet Adoptions", | ||
"slug": "getting-started-with-pet-adoptions", | ||
"type": "markdown", | ||
"contentUrl": "Getting-Started-With-Pet-Adoptions.md" | ||
}, | ||
{ | ||
"order": 1, | ||
"parent": "getting-started-with-pet-adoptions", | ||
"name": "Client Code (C#)", | ||
"slug": "client-code-csharp", | ||
"type": "markdown", | ||
"contentUrl": "Client-Code-Csharp.md" | ||
}, | ||
{ | ||
"order": 2, | ||
"parent": "getting-started-with-pet-adoptions", | ||
"name": "Client Code (Typescript)", | ||
"slug": "client-code-typescript", | ||
"type": "markdown", | ||
"contentUrl": "Client-Code-Typescript.md" | ||
}, | ||
{ | ||
"order": 5, | ||
"parent": "", | ||
"name": "Pets API", | ||
"type": "apiUrl", | ||
"slug": "pets-api", | ||
"contentUrl": "https://api.swaggerhub.com/apis/frank-kilcommins/Pets/1.0.0/swagger.json" | ||
}, | ||
{ | ||
"order": 6, | ||
"parent": "", | ||
"name": "Adoptions API", | ||
"type": "apiUrl", | ||
"slug": "adoptions-api", | ||
"contentUrl": "https://api.swaggerhub.com/apis/frank-kilcommins/Adoptions/1.0.0/swagger.json" | ||
} | ||
] | ||
{ | ||
"productMetadata": { | ||
"description": "This product gives the ability to programmatically embedded a Pet adoption workflow into your application 🐶", | ||
"slug": "pet-adoptions", | ||
"public": true, | ||
"hidden": false, | ||
"logo": "images/AdoptionsAPI.png", | ||
"logoDark": "", | ||
"autoPublish": true, | ||
"validateAPIs": true | ||
}, | ||
"contentMetadata": [ | ||
{ | ||
"order": 0, | ||
"parent": "", | ||
"name": "Getting Started with Pet Adoptions", | ||
"slug": "getting-started-with-pet-adoptions", | ||
"type": "markdown", | ||
"contentUrl": "Getting-Started-With-Pet-Adoptions.md" | ||
}, | ||
{ | ||
"order": 1, | ||
"parent": "getting-started-with-pet-adoptions", | ||
"name": "Client Code (C#)", | ||
"slug": "client-code-csharp", | ||
"type": "markdown", | ||
"contentUrl": "Client-Code-Csharp.md" | ||
}, | ||
{ | ||
"order": 2, | ||
"parent": "getting-started-with-pet-adoptions", | ||
"name": "Client Code (Typescript)", | ||
"slug": "client-code-typescript", | ||
"type": "markdown", | ||
"contentUrl": "Client-Code-Typescript.md" | ||
}, | ||
{ | ||
"order": 5, | ||
"parent": "", | ||
"name": "Pets API", | ||
"type": "apiUrl", | ||
"slug": "Pets", | ||
"contentUrl": "https://api.swaggerhub.com/apis/frank-kilcommins/Pets/1.0.0/swagger.json" | ||
}, | ||
{ | ||
"order": 6, | ||
"parent": "", | ||
"name": "Adoptions API", | ||
"type": "apiUrl", | ||
"slug": "Adoptions", | ||
"contentUrl": "https://api.swaggerhub.com/apis/frank-kilcommins/Adoptions/1.0.0/swagger.json" | ||
} | ||
] | ||
} |
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
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
Oops, something went wrong.