File tree Expand file tree Collapse file tree 7 files changed +64
-0
lines changed Expand file tree Collapse file tree 7 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ name: Deno CI
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths-ignore :
7
+ - " **/*.md"
8
+ - " **/*.MD"
6
9
pull_request :
7
10
branches : [main]
11
+ paths-ignore :
12
+ - " **/*.md"
13
+ - " **/*.MD"
8
14
9
15
permissions :
10
16
contents : read
Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ name: Browser CI
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths-ignore :
7
+ - " **/*.md"
8
+ - " **/*.MD"
6
9
pull_request :
7
10
branches : [main]
11
+ paths-ignore :
12
+ - " **/*.md"
13
+ - " **/*.MD"
8
14
9
15
permissions :
10
16
contents : read
Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ name: bun CI
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths-ignore :
7
+ - " **/*.md"
8
+ - " **/*.MD"
6
9
pull_request :
7
10
branches : [main]
11
+ paths-ignore :
12
+ - " **/*.md"
13
+ - " **/*.MD"
8
14
9
15
permissions :
10
16
contents : read
Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ name: Cloudflare Workers CI
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths-ignore :
7
+ - " **/*.md"
8
+ - " **/*.MD"
6
9
pull_request :
7
10
branches : [main]
11
+ paths-ignore :
12
+ - " **/*.md"
13
+ - " **/*.MD"
8
14
9
15
permissions :
10
16
contents : read
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ name: Node.js CI
3
3
on :
4
4
push :
5
5
branches : [main]
6
+ paths-ignore :
7
+ - " **/*.md"
8
+ - " **/*.MD"
6
9
pull_request :
7
10
branches : [main]
11
+ paths-ignore :
12
+ - " **/*.md"
13
+ - " **/*.MD"
8
14
9
15
jobs :
10
16
build :
Original file line number Diff line number Diff line change @@ -14,9 +14,15 @@ name: "CodeQL"
14
14
on :
15
15
push :
16
16
branches : [main]
17
+ paths-ignore :
18
+ - " **/*.md"
19
+ - " **/*.MD"
17
20
pull_request :
18
21
# The branches below must be a subset of the branches above
19
22
branches : [main]
23
+ paths-ignore :
24
+ - " **/*.md"
25
+ - " **/*.MD"
20
26
schedule :
21
27
- cron : " 38 17 * * 6"
22
28
You can’t perform that action at this time.
0 commit comments