Skip to content
Snippets Groups Projects
.gitlab-ci.yml 151 B
Newer Older
  • Learn to ignore specific revisions
  • Rafael László's avatar
    Rafael László committed
    image: node:latest
    
    stages:
      - Build
    
    
    Install_Test:
      stage: Build
      script:
        - npm install
        - ./node_modules/.bin/eslint .
        - npm run test