Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
LawrenceLau2020 committed Oct 17, 2022
2 parents 0cc25a6 + 4b916e6 commit ef57400
Show file tree
Hide file tree
Showing 22 changed files with 31,788 additions and 3,305 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @devinleighsmith @jdtoombs @LawrenceLau2020 @Fosol @Sharala-Perumal @antsand @ZachBourque @BradyMitch
* @devinleighsmith @jdtoombs @LawrenceLau2020 @Fosol @Sharala-Perumal @antsand @ZachBourqueBCGov @BradyMitch

# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/app-react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [14.19.3]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
with:
token: ${{secrets.GITHUB_TOKEN}}
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
comment-author: "github-actions[bot]"
body-includes: QUALITY GATE STATUS FOR APP-REACT

- name: Check Quality Gate and Create Comment
Expand Down
10 changes: 5 additions & 5 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
codecov:
require_ci_to_pass: yes
require_ci_to_pass: true
branch: dev

coverage:
precision: 2
round: down
range: "70...100"
range: '55...100'

parsers:
gcov:
Expand All @@ -16,9 +16,9 @@ parsers:
macro: no

comment:
layout: "reach,diff,flags,tree"
layout: 'reach,diff,flags,tree'
behavior: default
require_changes: no
require_changes: false

ignore:
- "*.ignore.*"
- '*.ignore.*'
8 changes: 8 additions & 0 deletions frontend/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"endOfLine": "lf"
}
16 changes: 12 additions & 4 deletions frontend/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach",
"port": 9229
},
{
"name": "Chrome",
"type": "chrome",
Expand All @@ -17,15 +23,18 @@
"type": "node",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
"args": ["test", "--runInBand", "--no-cache", "--watchAll=false"],
"args": [
"test",
"--runInBand",
"--no-cache",
"--env=jsdom",
"--watchAll=false"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"env": {
"CI": "true"
},
"disableOptimisticBPs": true
},
{
"type": "node",
Expand All @@ -42,7 +51,6 @@
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"protocol": "inspector",
"internalConsoleOptions": "neverOpen"
}
]
Expand Down
Loading

0 comments on commit ef57400

Please sign in to comment.