opengeos--geolibre
7df9ebf22c
Sync labels / sync (push) Failing after 1m9s
Publish Container Image / Build and publish container image (push) Has been cancelled
Deploy Website / Deploy to GitHub Pages (push) Has been cancelled
Deploy Website / Build website and demo (push) Has been cancelled
Deploy viewer / Deploy viewer proxy to Cloudflare Workers (push) Has been cancelled
Deploy tiles / Deploy planetary tile proxy to Cloudflare Workers (push) Has been cancelled
Deploy collab / Deploy collaboration relay to Cloudflare Workers (push) Has been cancelled
CI / Dependency audit (push) Has been cancelled
CI / E2E smoke (Playwright) (push) Has been cancelled
CI / Validate CITATION.cff (push) Has been cancelled
CI / Build and test (push) Has been cancelled
41 行
1.1 KiB
YAML
41 行
1.1 KiB
YAML
ci:
|
|
skip: [npm-build, eslint]
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: check-json
|
|
# This E2E fixture is intentionally malformed JSON — it drives the
|
|
# error-handling spec that asserts the app rejects a broken drop.
|
|
exclude: ^e2e/fixtures/malformed\.geojson$
|
|
- id: check-added-large-files
|
|
args: ["--maxkb=1024", "--enforce-all"]
|
|
- id: check-merge-conflict
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
args: ["--unsafe"]
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
args: ["--fix=lf"]
|
|
- id: trailing-whitespace
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: eslint
|
|
name: eslint
|
|
entry: npm run lint
|
|
language: system
|
|
pass_filenames: false
|
|
types_or: [ts, tsx, javascript, jsx]
|
|
- id: npm-build
|
|
name: npm build
|
|
entry: npm run build
|
|
language: system
|
|
pass_filenames: false
|
|
|
|
- repo: https://github.com/kynan/nbstripout
|
|
rev: 0.9.1
|
|
hooks:
|
|
- id: nbstripout
|