From ca8248431fe0d0c5d964e5624d78037985350118 Mon Sep 17 00:00:00 2001 From: Viswamedha Nalabotu Date: Wed, 19 Nov 2025 14:03:11 +0000 Subject: [PATCH] Removed yml to due lack of perms --- .gitlab-ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e86cb03..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,26 +0,0 @@ -image: node:20 -variables: - CI: 'true' - -# Main job -CI: - interruptible: true - only: - - main - - merge_requests - script: - # This enables task distribution via Nx Cloud - # Run this command as early as possible, before dependencies are installed - # Learn more at https://nx.dev/ci/reference/nx-cloud-cli#npx-nxcloud-startcirun - # Uncomment this line to enable task distribution - # - npx nx start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="build" - - - npm ci - - # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud - # - npx nx-cloud record -- echo Hello World - - npx nx run-many -t lint test build - # Nx Cloud recommends fixes for failures to help you get CI green faster. Learn more: https://nx.dev/ci/features/self-healing-ci - - after_script: - - npx nx fix-ci