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