Skip to content

Commit

Permalink
Merge pull request #582 from maxwroc/next
Browse files Browse the repository at this point in the history
Release v3.0.0
  • Loading branch information
maxwroc authored Oct 22, 2023
2 parents fbb4d64 + c594e8d commit e01c264
Show file tree
Hide file tree
Showing 35 changed files with 4,617 additions and 2,248 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
# only PR for master
branches:
- master
- next

jobs:
continous_integration:
Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.vscode/
/coverage/
/node_modules/
/dist/
/src/styles.ts
76 changes: 76 additions & 0 deletions .vscode/launch.json
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",
}
]
}
Loading

0 comments on commit e01c264

Please sign in to comment.