generated from AdobeDocs/dev-site-documentation-template
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Align with Adobe Glossary terms with exclusion of individual preferences of a project owner Ignore backend and frontend terms * Add symlink for use with VSC * Update PR testing workflow * Fix the textlint violations * Apply suggestions from code review Co-authored-by: Jared Hoover <[email protected]> Co-authored-by: Kevin Harper <[email protected]> * Apply suggestions from code review --------- Co-authored-by: Jared Hoover <[email protected]> Co-authored-by: Kevin Harper <[email protected]>
- Loading branch information
1 parent
c414e70
commit e9fc035
Showing
44 changed files
with
185 additions
and
138 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,39 @@ | ||
{ | ||
"rules": { | ||
"terminology": { | ||
"severity" : "warning", | ||
"exclude": [ | ||
"back[- ]end(\\w*)", | ||
"bug[- ]fix(es)?", | ||
"client ?side", | ||
"end-?user(s)?", | ||
"indexes\\b", | ||
"front[- ]end(\\w*)", | ||
"Mac ?OS", | ||
"OS X", | ||
"readme(s)?", | ||
"server ?side", | ||
"smartphone(s)?", | ||
"spell-?check(er|ing)?", | ||
"style-?sheet(s)?", | ||
"web-?page(s)?", | ||
"web[- ]?site(s)?", | ||
"white[- ]space", | ||
"ZIP" | ||
], | ||
"terms": [ | ||
["bug[- ]fix", "bugfix"], | ||
["bug-?fixes", "bug fixes"], | ||
["indices\\b", "indexes"], | ||
"macOS", | ||
"ReadMe", | ||
["smart[- ]phone(s)?", "smartphone$1"], | ||
["spell[- ]?check(er|ing)", "spelling checker$1"], | ||
"UNIX", | ||
["web[- ]page(s)?", "webpage$1"], | ||
["web[- ]site(s)?", "website$1"], | ||
["white-?space", "white space"] | ||
] | ||
} | ||
} | ||
} |
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,5 +1,8 @@ | ||
IGNORE_GITIGNORED_FILES=true | ||
VALIDATE_MARKDOWN=true | ||
MARKDOWN_CONFIG_FILE=.markdownlint.yml | ||
VALIDATE_YAML=true | ||
VALIDATE_ALL_CODEBASE=true | ||
VALIDATE_GITHUB_ACTIONS=true | ||
VALIDATE_JSON=true | ||
VALIDATE_MARKDOWN=true | ||
VALIDATE_NATURAL_LANGUAGE=true | ||
VALIDATE_YAML=true |
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,85 +1,89 @@ | ||
--- | ||
########################### | ||
########################### | ||
## Pull request testing ## | ||
########################### | ||
########################### | ||
name: Latest Pull Request | ||
|
||
# Documentation: | ||
# - Workflow: https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
# - SuperLinter: https://github.com/github/super-linter | ||
# - Link validation: https://github.com/remarkjs/remark-validate-links | ||
|
||
###################################################### | ||
# Start the job on a pull request to the main branch # | ||
###################################################### | ||
on: pull_request | ||
|
||
############### | ||
# Set the Job # | ||
############### | ||
jobs: | ||
validate: | ||
# Set the agent to run on | ||
runs-on: ubuntu-latest | ||
|
||
############################################ | ||
# Grant status permission for MULTI_STATUS # | ||
############################################ | ||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
|
||
################## | ||
# Load all steps # | ||
################## | ||
steps: | ||
########################## | ||
# Checkout the code base # | ||
########################## | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
# Full git history is needed to get a proper list of changed files | ||
# within `super-linter` | ||
fetch-depth: 0 | ||
- run: cat ".github/super-linter.env" >> "$GITHUB_ENV" | ||
|
||
################################ | ||
# Run Linters against code base # | ||
################################ | ||
- name: Lint Code Base | ||
# | ||
# Use full version number to avoid cases when a next | ||
# released version is buggy | ||
# About slim image: https://github.com/github/super-linter#slim-image | ||
uses: super-linter/super-linter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DEFAULT_BRANCH: main | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_GITHUB_ACTIONS: true | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
cache-dependency-path: 'yarn.lock' | ||
|
||
- name: Enable Corepack for Yarn | ||
run: corepack enable | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
env: | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
|
||
- name: Check links | ||
run: yarn test | ||
|
||
- name: Build site | ||
if: ${{ success() }} | ||
run: yarn build | ||
########################### | ||
########################### | ||
## Pull request testing ## | ||
########################### | ||
########################### | ||
name: Validate pull request | ||
|
||
# Documentation: | ||
# - Workflow: https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
# - SuperLinter: https://github.com/github/super-linter | ||
# - Link validation: https://github.com/remarkjs/remark-validate-links | ||
|
||
###################################################### | ||
# Start the job on a pull request to the main branch # | ||
###################################################### | ||
on: pull_request | ||
|
||
############### | ||
# Set the Job # | ||
############### | ||
jobs: | ||
lint: | ||
# Set the agent to run on | ||
runs-on: ubuntu-latest | ||
|
||
############################################ | ||
# Grant status permission for MULTI_STATUS # | ||
############################################ | ||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
|
||
################## | ||
# Load all steps # | ||
################## | ||
steps: | ||
########################## | ||
# Checkout the code base # | ||
########################## | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
with: | ||
# Full git history is needed to get a proper list of changed files | ||
# within `super-linter` | ||
fetch-depth: 0 | ||
- name: Load super-linter configuration | ||
run: cat .github/super-linter.env >> "$GITHUB_ENV" | ||
|
||
################################ | ||
# Run Linters against code base # | ||
################################ | ||
- name: Lint Code Base | ||
# | ||
# Use full version number to avoid cases when a next | ||
# released version is buggy | ||
# About slim image: https://github.com/github/super-linter#slim-image | ||
uses: super-linter/super-linter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DEFAULT_BRANCH: main | ||
test_and_build: | ||
runs-on: ubuntu-latest | ||
needs: lint | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
cache-dependency-path: 'yarn.lock' | ||
|
||
- name: Enable Corepack for Yarn | ||
run: corepack enable | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
env: | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
|
||
- name: Check links | ||
run: yarn test | ||
|
||
- name: Build site | ||
run: yarn build |
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 @@ | ||
.github/linters/.textlintrc |
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
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
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.