-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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 #9 from mermaid-js/develop
update fork
- Loading branch information
Showing
3 changed files
with
29 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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
## Summary | ||
## :bookmark_tabs: Summary | ||
Brief description about the content of your PR. | ||
|
||
## Design Decisions | ||
Resolves #<your issue id here> | ||
|
||
## :straight_ruler: Design Decisions | ||
Describe the way your implementation works or what design decisions you made if applicable. | ||
|
||
Resolves #<your issue id here> | ||
### :clipboard: Tasks | ||
Make sure you | ||
- [ ] :book: have read the [contribution guidelines](https://github.com/mermaid-js/mermaid/blob/develop/CONTRIBUTING.md) | ||
- [ ] :computer: have added unit/e2e tests (if appropriate) | ||
- [ ] :bookmark: targeted `develop` branch |
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 @@ | ||
on: [push] | ||
|
||
name: Static analysis | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
name: check tests | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: testomatio/check-tests@stable | ||
with: | ||
framework: cypress | ||
tests: "./cypress/integration/**/**.spec.js" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
has-tests-label: 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