diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 14931f9..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,95 +0,0 @@ -# gitzone standard -image: hosttoday/ht-docker-node:npmci - -cache: - paths: - - .yarn/ - key: "$CI_BUILD_STAGE" - -stages: -- security -- test -- release -- trigger -- pages - -mirror: - stage: security - script: - - npmci git mirror - tags: - - docker - -snyk: - stage: security - script: - - npmci command yarn global add snyk - - npmci command yarn install --ignore-scripts - - npmci command snyk test - tags: - - docker - -testLEGACY: - stage: test - script: - - npmci node install legacy - - npmci npm install - - npmci npm test - coverage: /\d+.?\d+?\%\s*coverage/ - tags: - - docker - allow_failure: true - -testLTS: - stage: test - script: - - npmci node install lts - - npmci npm install - - npmci npm test - coverage: /\d+.?\d+?\%\s*coverage/ - tags: - - docker - -testSTABLE: - stage: test - script: - - npmci node install stable - - npmci npm install - - npmci npm test - coverage: /\d+.?\d+?\%\s*coverage/ - tags: - - docker - -release: - stage: release - script: - - npmci npm prepare - - npmci npm publish - only: - - tags - tags: - - docker - -trigger: - stage: trigger - script: - - npmci trigger - only: - - tags - tags: - - docker - -pages: - image: hosttoday/ht-docker-node:npmci - stage: pages - script: - - npmci command yarn global add npmpage - - npmci command npmpage - tags: - - docker - only: - - tags - artifacts: - expire_in: 1 week - paths: - - public