diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b0bc8a94c28a51e015e5409063947dbb4946a1b0..b032b5acb51d8dc20805526865fe76981b2759f9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,6 +3,7 @@ stages:
   - lint_and_format
   - build
   - test
+  - security_scan
 
 default:
   image: node:20
@@ -40,3 +41,14 @@ test-coverage:
   stage: test
   script:
     - npm run test:coverage
+
+include:
+  - template: SAST.gitlab-ci.yml
+
+sast:
+  stage: security_scan
+  script:
+    - echo "Running SAST..."
+  only:
+    - main
+    - develop