Skip to content

Commit

Permalink
ref: Changelog.md & create .md linting
Browse files Browse the repository at this point in the history
  • Loading branch information
askonev committed Mar 26, 2024
1 parent a2d5d47 commit 4c6d84a
Show file tree
Hide file tree
Showing 3 changed files with 387 additions and 261 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ jobs:
- name: Run Docker Build
run: |
docker run -t $(docker build -q .) bash -c 'ls -la dist'
16 changes: 16 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Linting
on:
- pull_request
jobs:
markdownlint:
name: markdownlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Check markdown files using `markdownlint`
run: |
npm install -g markdownlint-cli
markdownlint *.md
Loading

0 comments on commit 4c6d84a

Please sign in to comment.