From 6c166e4f76e1c51caa2512af103a1ed8a56f3375 Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Mon, 27 Jan 2025 15:57:35 +0000 Subject: [PATCH] ci: runner compile immediately --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dead37e..ce35a58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ default: check_format: stage: check + needs: [] before_script: - cs install scalafmt script: @@ -15,6 +16,7 @@ check_format: check_commits: stage: check + needs: [] image: node:lts-alpine before_script: - apk add git @@ -25,6 +27,7 @@ check_commits: compile_jvm: stage: compile + needs: [] script: - scala compile --platform jvm -Werror . artifacts: @@ -34,7 +37,6 @@ compile_jvm: test_jvm: stage: test - dependencies: - - compile_jvm + needs: [ compile_jvm ] script: - scala test --platform jvm .