Skip to content

Instantly share code, notes, and snippets.

View pravintamil's full-sized avatar

PRAVEEN pravintamil

  • KnackForge
  • Chennai, India
View GitHub Profile
@pravintamil
pravintamil / .gitlab-ci.yml
Created April 5, 2019 12:27 — forked from superjose/.gitlab-ci.yml
This is an example of a .gitlab-ci.yml that is required for Continuous Integration on GitLab projects.
# Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/
# GitLab uses docker in the background, so we need to specify the
# image versions. This is useful because we're freely to use
# multiple node versions to work with it. They come from the docker
# repo.
# Uses NodeJS V 9.4.0
image: node:9.4.0
# And to cache them as well.