From 8fbc5ee077b74bdf5e6eed278dcde540b51ef691 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 7 May 2025 10:05:01 +0200 Subject: [PATCH] fix(ci): remove markdown linter --- .gitea/workflows/markdown-linters.yaml | 46 -------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .gitea/workflows/markdown-linters.yaml diff --git a/.gitea/workflows/markdown-linters.yaml b/.gitea/workflows/markdown-linters.yaml deleted file mode 100644 index 8127fce..0000000 --- a/.gitea/workflows/markdown-linters.yaml +++ /dev/null @@ -1,46 +0,0 @@ -name: Markdown linter - -on: - pull_request: - paths: [ "**/*.md" ] - types: [ "opened", "reopened", "synchronize" ] - push: - branches: - - '**' - paths: [ "**/*.md" ] - tags-ignore: - - '**' - workflow_dispatch: {} - -jobs: - markdown-link-checker: - container: - image: docker.io/library/node:23.11.0-alpine - runs-on: - - ubuntu-latest - steps: - - name: Install tooling - run: | - apk update - apk add git npm - - uses: actions/checkout@v4.2.2 - - name: Verify links in markdown files - run: | - npm install - npm run readme:link - - markdown-lint: - container: - image: docker.io/library/node:23.11.0-alpine - runs-on: - - ubuntu-latest - steps: - - name: Install tooling - run: | - apk update - apk add git - - uses: actions/checkout@v4.2.2 - - name: Lint markdown files - run: | - npm install - npm run readme:lint