-
-
Notifications
You must be signed in to change notification settings - Fork 66
50 lines (43 loc) · 1.37 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: Lint source deno-${{ matrix.deno_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
deno_version: [v1.x, v2.x]
env:
RUST_BACKTRACE: full
DENO_FUTURE: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: ${{ matrix.deno_version }}
- 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
if: matrix.deno_version == 'rc'
run: deno task check
- name: Type-check
if: matrix.deno_version == 'v1.x'
run: deno task check:deno-v1