From 785281f29a2d94710ae395551afffcfeb9ef4715 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Thu, 16 Apr 2026 15:40:27 +0100 Subject: [PATCH 1/4] Delete Layerfile --- Layerfile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Layerfile diff --git a/Layerfile b/Layerfile deleted file mode 100644 index f2eb7e1..0000000 --- a/Layerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM vm/ubuntu:18.04 - -# install docker-ce (from tutorial for ubuntu) -RUN apt-get update && \ - apt-get install apt-transport-https ca-certificates curl software-properties-common && \ - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \ - add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" && \ - apt-get update && \ - apt install docker-ce - -# install docker compose -RUN curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \ - chmod +x /usr/local/bin/docker-compose - -# copy the root (i.e., repository root) to /root in the runner -COPY / /root - -RUN REPEATABLE docker-compose up -d --build --force-recreate --remove-orphans && sleep 6 - -EXPOSE WEBSITE localhost:8000 - From 86d8a24bfc26bcf00bb8cf79854583226ae03273 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Thu, 16 Apr 2026 15:44:25 +0100 Subject: [PATCH 2/4] Update sidebar text color in main.css --- services/web/src/views/main/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/src/views/main/main.css b/services/web/src/views/main/main.css index 1c45a11..59ec76a 100644 --- a/services/web/src/views/main/main.css +++ b/services/web/src/views/main/main.css @@ -26,7 +26,7 @@ body { } .mainBody .sidebar, .mainBody .sidebar .btn { - color: #80858d; + color: #85808d; } header { @@ -88,4 +88,4 @@ header { background: #fff; border-radius: 5px; border: 1px solid #000; -} \ No newline at end of file +} From 63a1e003e2f895032b460aa1b2ae8d1eb7a1a085 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Thu, 16 Apr 2026 16:15:56 +0100 Subject: [PATCH 3/4] aaaa --- .github/workflows/pr-validation.yml | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/pr-validation.yml diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 0000000..9fd36f8 --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,32 @@ +name: PR Validation + +on: + pull_request: + branches: [ main, master ] + +jobs: + test-and-lint: + runs-on: ubuntu-latest + + steps: + # Step 1: Check out your code so the runner can see it + - name: Checkout Code + uses: actions/checkout@v4 + + # Step 2: Set up your environment (Example: Node.js) + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + # Step 3: Install dependencies + - name: Install Dependencies + run: npm install + + # Step 4: Run Linter (Checks code style) + - name: Run Linter + run: npm run lint + + # Step 5: Run Tests (The most important part) + - name: Run Tests + run: npm test \ No newline at end of file From 4f050efa9f7b9577c8ec2df41ff7a4db5777d0d9 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Fri, 17 Apr 2026 15:38:48 +0100 Subject: [PATCH 4/4] change color --- services/web/src/views/main/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/src/views/main/main.css b/services/web/src/views/main/main.css index 59ec76a..e4a67f6 100644 --- a/services/web/src/views/main/main.css +++ b/services/web/src/views/main/main.css @@ -79,7 +79,7 @@ header { top: 0; width: 100%; height: 100%; - background: rgba(0, 0, 0, 0.7); + background: rgba(0, 0, 0, 0.8); justify-content: center; align-items: center; }