Skip to content

Commit 68176a9

Browse files
committed
base: add ci_docs.yml.
1 parent 45d18ca commit 68176a9

File tree

7 files changed

+64
-0
lines changed

7 files changed

+64
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Deno CI
33
on:
44
push:
55
branches: [main]
6+
paths-ignore:
7+
- "**/*.md"
8+
- "**/*.MD"
69
pull_request:
710
branches: [main]
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*.MD"
814

915
permissions:
1016
contents: read

.github/workflows/ci_browser.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Browser CI
33
on:
44
push:
55
branches: [main]
6+
paths-ignore:
7+
- "**/*.md"
8+
- "**/*.MD"
69
pull_request:
710
branches: [main]
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*.MD"
814

915
permissions:
1016
contents: read

.github/workflows/ci_bun.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: bun CI
33
on:
44
push:
55
branches: [main]
6+
paths-ignore:
7+
- "**/*.md"
8+
- "**/*.MD"
69
pull_request:
710
branches: [main]
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*.MD"
814

915
permissions:
1016
contents: read

.github/workflows/ci_cloudflare.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Cloudflare Workers CI
33
on:
44
push:
55
branches: [main]
6+
paths-ignore:
7+
- "**/*.md"
8+
- "**/*.MD"
69
pull_request:
710
branches: [main]
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*.MD"
814

915
permissions:
1016
contents: read

.github/workflows/ci_docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Markdown CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- "**/*.md"
8+
- "**/*.MD"
9+
pull_request:
10+
branches: [main]
11+
paths:
12+
- "**/*.md"
13+
- "**/*.MD"
14+
15+
permissions:
16+
contents: read
17+
18+
jobs:
19+
fmt:
20+
name: Run deno fmt --check
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: denoland/setup-deno@v2
25+
with:
26+
deno-version: 2.x
27+
- name: Check formatting
28+
run: deno fmt --check

.github/workflows/ci_node.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Node.js CI
33
on:
44
push:
55
branches: [main]
6+
paths-ignore:
7+
- "**/*.md"
8+
- "**/*.MD"
69
pull_request:
710
branches: [main]
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*.MD"
814

915
jobs:
1016
build:

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,15 @@ name: "CodeQL"
1414
on:
1515
push:
1616
branches: [main]
17+
paths-ignore:
18+
- "**/*.md"
19+
- "**/*.MD"
1720
pull_request:
1821
# The branches below must be a subset of the branches above
1922
branches: [main]
23+
paths-ignore:
24+
- "**/*.md"
25+
- "**/*.MD"
2026
schedule:
2127
- cron: "38 17 * * 6"
2228

0 commit comments

Comments
 (0)