Add .gitlab-ci.yml

This commit is contained in:
William Diakité 2025-03-24 17:18:42 +00:00
parent 5af43e867d
commit 6156e1b989

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
# The Docker image that will be used to build your app
image: node:22
pages:
script:
- npm run build
artifacts:
paths:
# The folder that contains the files to be exposed at the Page URL
- public
rules:
# This ensures that only pushes to the default branch will trigger
# a pages deploy
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH