File tree Expand file tree Collapse file tree 2 files changed +30
-4
lines changed Expand file tree Collapse file tree 2 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 35
35
36
36
- name : Test
37
37
run : deno task test
38
+
39
+ check :
40
+ name : Check
41
+
42
+ runs-on : ubuntu-latest
43
+
44
+ steps :
45
+ - name : Checkout
46
+ uses : actions/checkout@v4
47
+
48
+ - name : Deno
49
+ uses : denoland/setup-deno@v2
50
+ with :
51
+ deno-version : 2.0.4
52
+
53
+ - name : Docs
54
+ run : deno task docs
55
+
56
+ - name : Linted
57
+ run : deno task linted
58
+
59
+ - name : Formatted
60
+ run : deno task formatted
61
+
62
+ - name : Publishable
63
+ run : deno task publishable
Original file line number Diff line number Diff line change 178
178
]
179
179
},
180
180
"tasks" : {
181
- "format" : " deno fmt" ,
182
- "formatted" : " deno fmt --check" ,
183
- "lint" : " deno lint --fix" ,
184
- "linted" : " deno lint" ,
185
181
"test" : " deno test --doc --parallel --shuffle --trace-leaks --coverage --clean" ,
186
182
"docs" : " deno doc --html mod.ts" ,
183
+ "lint" : " deno lint --fix" ,
184
+ "linted" : " deno lint" ,
185
+ "format" : " deno fmt" ,
186
+ "formatted" : " deno fmt --check" ,
187
187
"publishable" : " deno publish --dry-run --allow-dirty"
188
188
}
189
189
}
You can’t perform that action at this time.
0 commit comments