mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
* fix(types/interactions): make "content" optional in SlashCommandCallbackData' Closes #590 * ignore lint
13 lines
348 B
YAML
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
|