From fbaed09d14a6536af81c70e285f01d1e2c20f737 Mon Sep 17 00:00:00 2001 From: SinusFox Date: Mon, 14 Oct 2024 19:03:41 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d0cb6aa..31a3920 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,9 +14,6 @@ install_dependencies: cache: paths: - node_modules/ - artifacts: - paths: - - node_modules/ # Run automatically on PRs to main only: - merge_requests @@ -35,9 +32,6 @@ build_nextjs: cache: paths: - .next/ - artifacts: - paths: - - .next/ # Run automatically on PRs to main only: - merge_requests @@ -53,10 +47,6 @@ run_tests: - npm test # Replace with your test command (e.g. jest) dependencies: - install_dependencies - artifacts: - when: always - paths: - - test-reports/ # Run automatically on PRs to main only: - merge_requests @@ -70,9 +60,6 @@ deploy: script: - mkdir public - cp -r .next/* public # Example for GitLab Pages, adjust as needed - artifacts: - paths: - - public # Only run on merge to main branch only: - main -- 2.52.0