Skip to content
Snippets Groups Projects
.gitlab-ci.yml 192 B
Newer Older
  • Learn to ignore specific revisions
  • default:
      image: node:10
    
    before_script:
      - npm ci
    
    stages:
      - build
    
      - test
    
    
    backend_build:
      stage: build
      script:
        - npm build
    
    
    backend_test:
      stage: test
      script:
        - npm test