Skip to content
Snippets Groups Projects
This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 167 B
stages:
  - build

lint:
  stage: build
  tags:
    - label-1
  script:
    - 'cd frontend'
    - 'yarn install'
    - 'node_modules/eslint/bin/eslint.js --ext vue .'