Node.js CI steps

Hello,

I work on a project in a company and I am a beginner on doing CI / CD pipeline, on Gitlab.

I have the task of automating a web application developed in Node.js (HTML, CSS …)

On the .Gitlab-ci.yml file I wrote this:

stages:
- containerization
Containerization:
stage: containerization
script:

- docker build -t MySiteWeb.fr.

It works very well, but I would like to know what are the remaining steps to make a CI.