├── .build_script.sh ├── .deploy_script.sh ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── index.js └── package.json /.build_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/.build_script.sh -------------------------------------------------------------------------------- /.deploy_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/.deploy_script.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | .git 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piyushsachdeva/GitLabCITutorial/HEAD/package.json --------------------------------------------------------------------------------