diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-20 08:06:48 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-20 08:30:50 -0700 |
commit | fe12d24e207c74fde7aff22180d9e8e4fbe9c277 (patch) | |
tree | cbec34dba00c138cc42e6f252fbe741800a43e09 /.github | |
parent | fd80f81d45c241415495f131f80af6b247086a96 (diff) |
lint
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..257678e9 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +name: Node.js CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 + with: + ruby-version: '3.2' + - run: gem install mdl + - run: mdl . --ignore-front-matter -r MD011,MD023,MD027,MD028,MD037 |