Skip to content
Snippets Groups Projects
.gitlab-ci.yml 352 B
Newer Older
N5608's avatar
N5608 committed
#This declares the pipeline stages  
stages:
  - build
  - test
  - deploy
N5608's avatar
N5608 committed
  
N5608's avatar
N5608 committed
cache:
  paths:
  - node_modules/
build:
  stage: build
N5608's avatar
N5608 committed
  tags:
    - general
N5608's avatar
N5608 committed
  script:
    - npm install
    - npm run-script build
N5608's avatar
N5608 committed
    
N5608's avatar
N5608 committed
test:
  stage: test
  script:
    - echo "Running react test suite......"
deploy:
  stage: deploy
  script:
    - npm run-script deploy