-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into feat/text-control-max-length
- Loading branch information
Showing
956 changed files
with
20,184 additions
and
6,031 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
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,19 @@ | ||
name: Markdown Links Check | ||
# runs every monday at 9 am | ||
on: | ||
schedule: | ||
- cron: "0 9 * * 1" | ||
|
||
jobs: | ||
check-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
# checks all markdown files from important folders including all subfolders | ||
with: | ||
# only show errors that occur instead of successful links + errors | ||
use-quiet-mode: 'yes' | ||
# output full HTTP info for broken links | ||
use-verbose-mode: 'yes' | ||
config-file: '.github/workflows/markdown-link-check-config.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/", | ||
"replacement": "./" | ||
} | ||
], | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "localhost" | ||
}, | ||
{ | ||
"pattern": "https://github.com/storybookjs/storybook/pull/*" | ||
}, | ||
{ | ||
"pattern": "https://stackblitz.com/*" | ||
}, | ||
{ | ||
"pattern": "https://*.chromatic.com" | ||
}, | ||
{ | ||
"pattern": "https://www.chromatic.com/build?*" | ||
}, | ||
{ | ||
"pattern": "http://*.nodeca.com" | ||
}, | ||
{ | ||
"pattern": "http://definitelytyped.org/*" | ||
}, | ||
{ | ||
"pattern": "https://yoursite.com/*" | ||
}, | ||
{ | ||
"pattern": "https://my-specific-domain.com" | ||
} | ||
], | ||
"aliveStatusCodes": [429, 200] | ||
} |
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.