Skip to content

Commit

Permalink
feat(workflows): Add linting GitHub Actions (#5)
Browse files Browse the repository at this point in the history
Reviewed-by: Razvan Deaconescu <[email protected]>
Reviewed-by: Cezar Craciunoiu <[email protected]>
Approved-by: Cezar Craciunoiu <[email protected]>
  • Loading branch information
razvand authored Dec 27, 2023
2 parents 0dc5706 + 09f754b commit 2713df8
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 2713df8

Please sign in to comment.