Skip to content

Commit

Permalink
PIMS-307 Geocoder search in property filter (#1279)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fosol committed Oct 6, 2022
1 parent df614cb commit 01771c2
Show file tree
Hide file tree
Showing 18 changed files with 31,763 additions and 3,293 deletions.
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
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

0 comments on commit 01771c2

Please sign in to comment.