Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Chore] - Fixed Markdown Lint and Removed Duplicated Code #124

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -14,8 +14,7 @@ on:
- '.env'
- '.gitignore'
pull_request:
branches:
- main
types: [opened, synchronize, reopened, labeled, ready_for_review]
paths-ignore:
- 'README.md'
- 'LICENSE'
3 changes: 2 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Dependency Review
on: [pull_request]
on:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
9 changes: 9 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -39,3 +39,12 @@ jobs:

- name: Prettier Code
run: npm run format:diff

- name: Lint markdown format
uses: super-linter/super-linter/slim@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: main
FILTER_REGEX_INCLUDE: .*docs/.*md$
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN: true