Removed auth
All checks were successful
Publish Container / publish (push) Successful in 5m35s

This commit is contained in:
Marco 2026-04-20 14:11:18 +02:00
commit 08e573d63c
17 changed files with 348 additions and 26 deletions

40
.vscode/tasks.json vendored
View file

@ -68,6 +68,46 @@
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "WorkTracker: Docker Playwright Tests",
"type": "shell",
"command": "docker",
"args": [
"compose",
"-f",
"docker-compose.yml",
"-f",
"docker-compose.tests.yml",
"up",
"--build",
"--abort-on-container-exit",
"--exit-code-from",
"playwright",
"playwright"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "WorkTracker: Docker Playwright Down",
"type": "shell",
"command": "docker",
"args": [
"compose",
"-f",
"docker-compose.yml",
"-f",
"docker-compose.tests.yml",
"down",
"--volumes"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
}
]
}