Skip to content

Commit

Permalink
task: Add linting GitHub Actions
Browse files Browse the repository at this point in the history
- Add super-linter action for linting source-code and Markdown files.
- Add spellcheck action to check for misspellings in Markdown files.

Signed-off-by: Gabriel Mocanu <[email protected]>
  • Loading branch information
gabrielmocanu authored and razvand committed Dec 31, 2023
1 parent d61937a commit 1447a09
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Linter Actions

on:
pull_request:
branches:
- main

jobs:
super-linter:
name: Super Linter
runs-on: ubuntu-latest
steps:
- name: Super Linter
uses: open-education-hub/actions/super-linter@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- name: Spellcheck
uses: open-education-hub/actions/spellcheck@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1447a09

Please sign in to comment.