aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
author简律纯 <leader@hydroroll.team>2024-06-03 09:21:26 +0800
committerGitHub <noreply@github.com>2024-06-03 09:21:26 +0800
commit1d0cab5d676ca7943618353efaa89a1854cb19aa (patch)
treeaaec5798381cfd2a07cd148df58625d04d1cfc45 /.github
parenta22fc0ef5d3a02c36c7cb75036707806121b919d (diff)
downloadsupport-1d0cab5d676ca7943618353efaa89a1854cb19aa.tar.gz
support-1d0cab5d676ca7943618353efaa89a1854cb19aa.zip
Delete .github/workflows/md-lint.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/md-lint.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/md-lint.yml b/.github/workflows/md-lint.yml
deleted file mode 100644
index f9ed5d0..0000000
--- a/.github/workflows/md-lint.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Markdown Lint
-on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
-
-jobs:
- ci:
- name: Run Linter
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- node-version: [16.x]
-
- steps:
- - name: Checkout Source Files
- uses: actions/checkout@v2
-
- - name: Use Node.js v${{ matrix.node-version }}
- uses: actions/setup-node@v2
- with:
- node-version: ${{ matrix.node-version }}
-
- - name: Install Dependencies
- run: npm ci
-
- - name: Lint Source Files
- run: npm run lint