-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add guidelines for e2e tests (#1466)
* Add guidelines for e2e tests * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Add paragraph about purpose of e2e tests * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Add example for action+state checks * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Reformulate sentence * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Update tests/e2e/README.md Co-authored-by: Marius Poke <[email protected]> * Incorporate comments * Incoporate more comments * Expand gas section * Fix links * Point out locations of where to add stuff * Add e2e tutorial to link checker * Add section on how to run e2e tests * Add e2e README to trigger link checker * Address comments * Update tests/e2e/README.md Co-authored-by: Simon Noetzlin <[email protected]> --------- Co-authored-by: mpoke <[email protected]> Co-authored-by: Simon Noetzlin <[email protected]>
- Loading branch information
1 parent
8a5932d
commit d8c2cb3
Showing
2 changed files
with
221 additions
and
4 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
paths: | ||
- "*.md" | ||
- "docs/docs/**.md" | ||
- "tests/e2e/README.md" | ||
jobs: | ||
repo-root: | ||
runs-on: ubuntu-latest | ||
|
@@ -21,7 +22,10 @@ jobs: | |
steps: | ||
# Check out the latest version of the code | ||
- uses: actions/checkout@v4 | ||
# Checks the status of hyperlinks in *.md files in the docs/docs folder | ||
# Checks the status of hyperlinks in *.md files in the docs/docs folder, | ||
# as well as various explicitly listed files throughout the repo. | ||
# We don't use this to check the repo root, since there we want to use max-depth=1. | ||
- uses: gaurav-nelson/[email protected] | ||
with: | ||
folder-path: 'docs/docs' | ||
file-path: 'tests/e2e/README.md' |
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