diff --git a/.github/workflows/md-linting.yml b/.github/workflows/md-linting.yml deleted file mode 100644 index bde0381df76..00000000000 --- a/.github/workflows/md-linting.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Markdown Linting - -on: - pull_request: - push: - branches: [trunk] - -jobs: - MDLintingCheck: - name: Lint - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Setup node version and npm cache - uses: actions/setup-node@v3 - with: - node-version-file: '.nvmrc' - cache: 'npm' - - name: Install Node dependencies - run: npm ci --no-optional - - name: Lint - run: npm run lint