Compare commits

..

2 Commits

Author SHA1 Message Date
52e55c569e feat(ci): add automated Lighthouse audit pipeline
All checks were successful
Portfolio/pipeline/head This commit looks good
2026-01-12 18:41:38 +01:00
f819c6d708 feat(ci): stabilize infrastructure and deployment pipeline 2026-01-12 18:41:32 +01:00
3 changed files with 16 additions and 2 deletions

4
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode", "unifiedjs.vscode-mdx"],
"unwantedRecommendations": []
}

11
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

3
Jenkinsfile vendored
View File

@@ -1,9 +1,8 @@
pipeline {
agent any
environment {
DOCKER_HOST = "unix:///run/user/1001/docker.sock"
DOCKER_HOST = "unix:///var/run/docker.sock"
APP_VERSION = "${env.BRANCH_NAME}-${env.BUILD_NUMBER}"
DOCKER_CONFIG = "${env.WORKSPACE}/.docker"
}
stages {
stage('Build') {