Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbcbauer authored May 7, 2024
1 parent ed052f4 commit d353dd6
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/reusable-lint-md.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This is a basic workflow to help you get started with Actions

name: Markdown linting for documentation

jobs:
lint-md:
name: Check files against markdown linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v15
with:
config: '.markdownlint.yaml'
globs: |
docs/**/*.md
19 changes: 19 additions & 0 deletions .github/workflows/reusable-lint-mdx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This is a basic workflow to help you get started with Actions

name: Markdown linting for documentation

jobs:
check-mdx:
name: Check files against mdx checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16

- name: Install mdx-checker
run: npm i docusaurus-mdx-checker
- name: Run mdx-checker
run: npx docusaurus-mdx-checker

3 changes: 3 additions & 0 deletions profile/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Welcome to Catena-X 🙌

TBD

0 comments on commit d353dd6

Please sign in to comment.