-
Notifications
You must be signed in to change notification settings - Fork 39
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 #582 from maxwroc/next
Release v3.0.0
- Loading branch information
Showing
35 changed files
with
4,617 additions
and
2,248 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
# only PR for master | ||
branches: | ||
- master | ||
- next | ||
|
||
jobs: | ||
continous_integration: | ||
|
@@ -23,4 +24,14 @@ jobs: | |
- name: Build | ||
run: npm run build | ||
- name: Test | ||
run: npm run test | ||
run: npm run test+coverage | ||
- name: Code Coverage Report | ||
uses: romeovs/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
filter-changed-files: true | ||
#delete-old-comments: true | ||
- name: Coveralls | ||
uses: coverallsapp/[email protected] | ||
with: | ||
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/.vscode/ | ||
/coverage/ | ||
/node_modules/ | ||
/dist/ | ||
/src/styles.ts |
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,76 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Run all tests in the file", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"test" | ||
], | ||
"args": [ | ||
"--", | ||
"--runTestsByPath", | ||
"${relativeFile}" | ||
], | ||
"console": "integratedTerminal", | ||
}, | ||
{ | ||
"name": "Run all tests in the file (debug in electron)", | ||
"type": "node", | ||
"request": "launch", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"test+debug" | ||
], | ||
"args": [ | ||
"--", | ||
"--runTestsByPath", | ||
"${relativeFile}" | ||
], | ||
"console": "integratedTerminal", | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Run selected test", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"test" | ||
], | ||
"args": [ | ||
"--", | ||
"--runTestsByPath", | ||
"${relativeFile}", | ||
"-t", | ||
"${selectedText}" | ||
], | ||
"console": "integratedTerminal", | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Run selected test (debug in electron)", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": [ | ||
"run-script", | ||
"test+debug" | ||
], | ||
"args": [ | ||
"--", | ||
"--runTestsByPath", | ||
"${relativeFile}", | ||
"-t", | ||
"${selectedText}" | ||
], | ||
"console": "integratedTerminal", | ||
} | ||
] | ||
} |
Oops, something went wrong.