mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
* chore: setup "deno lint" * ci(lint): add --unstable flat to lint script * lint * lint * refactor: destructure assignment for Message#guildID * chore: remove TODO comment * refactor: remove redundant async * chore: switch to Deno stable vscode ext * chore: remove ignore comments * chore: remove ignore comments * chore: remove @ts-ignore comment * fixes * fixes * chore: remove deno-lint-ignore comment * chore: add index signature
21 lines
362 B
YAML
21 lines
362 B
YAML
name: Lint
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'src/**'
|
|
- 'mod.ts'
|
|
- 'tests/**'
|
|
pull_request:
|
|
paths:
|
|
- 'src/**'
|
|
- 'mod.ts'
|
|
- 'tests/**'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: denolib/setup-deno@v2
|
|
- name: Run lint script
|
|
run: deno lint src/** --unstable
|