Files
discordeno/.github/workflows/lint.yml
ayntee 5802a9d1ca fix(types/interactions): make "content" optional in SlashCommandCallbackData (#599)
* fix(types/interactions): make "content" optional in SlashCommandCallbackData'

Closes #590

* ignore lint
2021-03-06 22:16:02 +04:00

13 lines
348 B
YAML

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: denolib/setup-deno@v2
- name: Run fmt check script
run: deno fmt --check
- name: Run lint script
run: deno lint src/** test/** --unstable --ignore=./src/types,./src/interactions/types