diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37ddf6b..d0cb6aa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ stages: # Job to install dependencies install_dependencies: stage: install - image: node:16 + image: node:20 script: - npm ci cache: @@ -27,7 +27,7 @@ install_dependencies: # Job to build the Next.js project build_nextjs: stage: build - image: node:16 + image: node:20 script: - npm run build dependencies: @@ -48,7 +48,7 @@ build_nextjs: # Job to run tests run_tests: stage: test - image: node:16 + image: node:20 script: - npm test # Replace with your test command (e.g. jest) dependencies: