.gitlab-ci.yml 209 B

1234567891011121314
  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. - yarn install
  8. unit:
  9. stage: test
  10. script:
  11. - yarn test