Skip to content
Snippets Groups Projects
.gitlab-ci.yml 196 B
Newer Older
  • Learn to ignore specific revisions
  • default:
      image: node:10
    
    before_script:
      - npm ci
    
    stages:
      - build
    
      - test
    
    
    backend_build:
      stage: build
      script:
    
    Nayeem Rahman's avatar
    Nayeem Rahman committed
        - npm run build
    
    
    backend_test:
      stage: test
      script:
        - npm test