.gitlab-ci.yml 239 B

123456789101112131415
  1. stages:
  2. - test
  3. before_script:
  4. - apt-get update
  5. - curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
  6. - apt-get install -y nodejs
  7. - npm install --global yarn
  8. - yarn install
  9. unit:
  10. stage: test
  11. script:
  12. - yarn test