-
Notifications
You must be signed in to change notification settings - Fork 167
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 theiconic/master
Merge changes from theiconic/generate-plantuml-action
- Loading branch information
Showing
14 changed files
with
7,258 additions
and
2,845 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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: generate plantuml | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
generate_plantuml: | ||
runs-on: ubuntu-latest | ||
name: plantuml | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: plantuml | ||
id: plantuml | ||
uses: grassedge/generate-plantuml-action@master | ||
with: | ||
path: example | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,33 @@ | ||
name: tests | ||
on: push | ||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
name: tests | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
- name: install depedencies | ||
run: npm install | ||
- name: run tests | ||
run: "npm run test:ci" | ||
env: | ||
CI: true | ||
- name: report test results | ||
uses: IgnusG/[email protected] | ||
if: always() | ||
with: | ||
access-token: ${{ secrets.GITHUB_TOKEN }} | ||
check-name: Unit Tests | ||
- name: CodeClimate coverage report | ||
uses: aktions/codeclimate-test-reporter@v1 | ||
if: ${{ env.CC_TEST_REPORTER_ID != '' }} | ||
with: | ||
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
command: after-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 |
---|---|---|
|
@@ -102,4 +102,7 @@ typings/ | |
# TernJS port file | ||
.tern-port | ||
|
||
/lib | ||
# IDE files | ||
.idea | ||
|
||
/lib |
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,4 @@ | ||
@startuml | ||
A -> B: test5 | ||
B -> C: test5 | ||
@enduml |
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,4 @@ | ||
@startuml | ||
A -> B: test6 | ||
B -> C: test6 | ||
@enduml |
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,4 @@ | ||
@startuml | ||
A -> B: test7 | ||
B -> C: test7 | ||
@enduml |
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.