This repository has been archived on 2025-04-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
common-ansible/.gitlab-ci.yml
2021-01-30 13:47:27 +01:00

15 lines
221 B
YAML

stages:
- lint
cache:
key: $CI_COMMIT_REF_SLUG
paths:
- node_modules/
lint:
stage: lint
image: node:12
before_script:
- npm install prettier --no-save
script:
- npx prettier '**/*.yml' --check