Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 307 Bytes

react-ci.md

File metadata and controls

18 lines (14 loc) · 307 Bytes

Configuration

Create a .gitlab-ci.yml file inside your project root directory and copy the below configuration.

stages:
  - lint

lint:
  stage: lint
  image: node
  script:
    - echo "Code linting..."
    - npm install
    - npm run lint

As of now we will only perform linting checks.