deno.land / x / manual@v1.28.2 / .github / workflows / ci.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
name: ci
on: push: branches: [main] pull_request: branches: [main, rewrite]
jobs: broken-links: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Check Markdown Links uses: ruzickap/action-my-markdown-link-checker@v1 with: config_file: .github/.mlc_config.json
format: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3
- name: Set up Deno uses: denoland/setup-deno@v1.0.0
- name: Format run: deno fmt --check
type-check: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2
- name: Set up Deno uses: denoland/setup-deno@v1.0.0
- name: Type-check Deno manual run: deno test --doc --unstable --import-map=.github/import_map.json --no-check=remote
manual

Version Info

Tagged at
a year ago