From 616243880bff6453255dd7da385ac488d3832fe6 Mon Sep 17 00:00:00 2001 From: Safaa Mahdir <safaa.mahdir@imt-atlantique.net> Date: Wed, 26 Mar 2025 17:53:46 +0100 Subject: [PATCH] test: IssuePipeline CI: executer tests unitaires sur branche --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6f71964 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +stages: + - test + +test: + image: node:latest + stage: test + script: + - npm install + - npm test + only: + - branches -- GitLab