Skip to content

Instantly share code, notes, and snippets.

@adriandmitroca
Created July 19, 2021 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adriandmitroca/749a10a217478dfd58ab4d2f8c0ad469 to your computer and use it in GitHub Desktop.
Save adriandmitroca/749a10a217478dfd58ab4d2f8c0ad469 to your computer and use it in GitHub Desktop.
GitLab CI Lint Check on Merge Requests
image: node:latest
cache:
paths:
- node_modules/
stages:
- lint
lint:
stage: lint
only:
- merge_requests
script:
- yarn
- yarn lint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment