Skip to main content
Module

x/cliffy/.github/workflows/lint.yml

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Latest
File
name: Linton: push: branches: [main] pull_request:jobs: lint: name: Lint source runs-on: ubuntu-latest env: RUST_BACKTRACE: full steps: - name: Checkout uses: actions/checkout@v3
- name: Setup Deno uses: denoland/setup-deno@v1 with: deno-version: v1.x
- name: Setup shellcheck run: > wget https://github.com/koalaman/shellcheck/releases/download/v0.7.1/shellcheck-v0.7.1.linux.x86_64.tar.xz && tar -xvf shellcheck-v0.7.1.linux.x86_64.tar.xz && mv shellcheck-v0.7.1/shellcheck . && rm -rf shellcheck-v0.7.1 && chmod +x shellcheck && ./shellcheck --version
- name: Run linter run: deno task lint
- name: Run bash check run: ./shellcheck --shell bash <(deno run -r ./examples/command/shell-completions.ts completions bash)
- name: Run zsh check run: ./shellcheck --shell bash <(deno run -r ./examples/command/shell-completions.ts completions zsh)
- name: Type-check examples run: deno task check:examples