Skip to content
Snippets Groups Projects
.gitlab-ci.yml 415 B
Newer Older
N5608's avatar
N5608 committed
#This declares the pipeline stages  
image: node:13.1

N5608's avatar
N5608 committed
stages:
  - build
  - test
N5608's avatar
N5608 committed
  - deploy
N5608's avatar
N5608 committed
  
N5608's avatar
N5608 committed
cache:
  paths:
  - node_modules/
N5608's avatar
N5608 committed
  
build:
  stage: build
  script:
N5608's avatar
N5608 committed
    - npm install
    - npm run-script build
  tags:
    - general
    
test:
  stage: test
  script:
    - echo "Running react test suite......"
  tags:
    - general
    
deploy:
  stage: deploy
  script:
N5608's avatar
N5608 committed
    - echo 'Deploy'
N5608's avatar
N5608 committed
  tags:
N5608's avatar
N5608 committed
    - general
N5608's avatar
N5608 committed