Adds an option to render briefs and notes of semconv attribute groups in md #360
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Markdown checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
paths: | |
- .github/workflows/markdownlint.yml | |
- .markdownlint.yaml | |
- '**.md' | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: install markdownlint | |
run: sudo npm install -g markdownlint-cli | |
- name: run markdownlint | |
run: markdownlint '**.md' --ignore 'node_modules/**' |