This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ci-templates/Pre-Commit-Node.gitlab-ci.yml
T

16 lines
395 B
YAML

run-pre-commit:
stage: .pre
image: unbound/pre-commit-node:v0.0.15@sha256:db9d1714df873536c3ab433f1e9f9134fb3925efdd654c8ec5fee74329e37234
variables:
PRE_COMMIT_HOME: ${CI_PROJECT_DIR}/.cache/pre-commit
cache:
- key:
files:
- .pre-commit-config.yaml
paths:
- ${PRE_COMMIT_HOME}
before_script:
- npm ci --no-progress
script:
- pre-commit run --all-files