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/6] 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/6] 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/6] 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 bafb02cb4b57a2da823ed845a189e20ee38a1481 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:02:51 +0100 Subject: [PATCH 4/6] Add test workflow comment to main.css --- services/web/src/views/main/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/src/views/main/main.css b/services/web/src/views/main/main.css index 59ec76a..c385d79 100644 --- a/services/web/src/views/main/main.css +++ b/services/web/src/views/main/main.css @@ -1,3 +1,4 @@ +#test workflow html, body { padding: 0; margin: 0; From 6255450ec9891978b93af3d8534d49ed38e57076 Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:09:20 +0100 Subject: [PATCH 5/6] ddd --- services/web/src/views/main/main.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/web/src/views/main/main.css b/services/web/src/views/main/main.css index c385d79..03e71f5 100644 --- a/services/web/src/views/main/main.css +++ b/services/web/src/views/main/main.css @@ -1,4 +1,4 @@ -#test workflow + html, body { padding: 0; margin: 0; @@ -90,3 +90,5 @@ header { border-radius: 5px; border: 1px solid #000; } + +/*update 1*/ From 811d20c32a13e12691eb470e53a8104117b8687c Mon Sep 17 00:00:00 2001 From: houssam el atmani <72769497+houssam15@users.noreply.github.com> Date: Fri, 17 Apr 2026 16:51:53 +0100 Subject: [PATCH 6/6] aaa --- .github/workflows/pr-validation.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 9fd36f8..908ae57 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -3,6 +3,8 @@ name: PR Validation on: pull_request: branches: [ main, master ] + push: + branches: [ main, master ] jobs: test-and-lint: