From 2f1325d4fc06a264b8c8558de51745c9c983e537 Mon Sep 17 00:00:00 2001 From: hayden Date: Fri, 13 Oct 2023 11:18:54 +0800 Subject: [PATCH] chore: remove gitlab-ci.yml --- .gitlab-ci.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 44a0b0c..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,45 +0,0 @@ -# Read more: https://docs.gitlab.com/12.7/ee/ci/yaml/README.html -cache: - paths: - - .yarn - - node_modules/ - -before_script: - - yarn install --cache-folder .yarn - -stages: - - static-checking - - type-checking - - test - - build - -static-checking: - stage: static-checking - script: - - yarn eslint - only: - - merge_requests - - dev - -type-checking: - stage: type-checking - script: - - yarn check-types - only: - - merge_requests - - dev - -test: - stage: test - script: - - yarn test - only: - - merge_requests - - dev - -build: - stage: build - script: - - yarn build - only: - - dev