Skip to content

Commit

Permalink
Fix task definition for UI to recognize when task is ready (#1208)
Browse files Browse the repository at this point in the history
  • Loading branch information
duranb authored Apr 3, 2024
1 parent 966b17d commit ba3708e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@
"type": "shell",
"command": "nvm use && npm run dev",
"detail": "Task to run the Aerie UI in development mode.",
"isBackground": true,
"problemMatcher": [
{
"background": {
"activeOnStart": true,
"beginsPattern": " VITE",
"endsPattern": "➜ press h to show help"
"beginsPattern": "\\s*VITE v",
"endsPattern": ".*to show help"
},
"pattern": {
"regexp": ""
"regexp": "."
}
}
],
Expand Down Expand Up @@ -77,6 +78,7 @@
"type": "shell",
"command": "cd ../aerie && docker compose up --build aerie_gateway aerie_merlin aerie_scheduler aerie_merlin_worker_1 aerie_merlin_worker_2 aerie_scheduler_worker_1 aerie_scheduler_worker_2 aerie_sequencing hasura postgres",
"detail": "Task to start up Aerie containers.",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"group": "groupB"
Expand Down Expand Up @@ -121,6 +123,8 @@
{
"label": "e2e Codegen",
"type": "shell",
"dependsOn": ["Aerie UI"],
"dependsOrder": "sequence",
"command": "nvm use && npm run test:e2e:codegen",
"detail": "Task to run Playwright codegen"
},
Expand Down

0 comments on commit ba3708e

Please sign in to comment.