-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
luacheck: | ||
Check warning on line 8 in .github/workflows/lint.yaml GitHub Actions / spellcheck
|
||
needs: [] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: lunarmodules/luacheck@v1 | ||
Check warning on line 13 in .github/workflows/lint.yaml GitHub Actions / spellcheck
Check warning on line 13 in .github/workflows/lint.yaml GitHub Actions / spellcheck
Check warning on line 13 in .github/workflows/lint.yaml GitHub Actions / spellcheck
|
||
|
||
stylua: | ||
Check warning on line 15 in .github/workflows/lint.yaml GitHub Actions / spellcheck
|
||
needs: [] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: JohnnyMorganz/stylua-action@v4 | ||
Check warning on line 20 in .github/workflows/lint.yaml GitHub Actions / spellcheck
Check warning on line 20 in .github/workflows/lint.yaml GitHub Actions / spellcheck
Check warning on line 20 in .github/workflows/lint.yaml GitHub Actions / spellcheck
|
||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version: v0.20.0 | ||
args: --check . | ||
|
||
spellcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: streetsidesoftware/cspell-action@v6 |