File tree Expand file tree Collapse file tree 3 files changed +27
-11
lines changed
Expand file tree Collapse file tree 3 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 1818 - uses : denoland/setup-deno@v1.0.0
1919 with :
2020 deno-version : v1.x
21- - run : make fmt-check
21+ - run : deno fmt - -check
2222 if : matrix.os == 'ubuntu-latest'
23- - run : make lint
23+ - run : deno lint
2424 if : matrix.os == 'ubuntu-latest'
2525 - run : |
2626 make test
Original file line number Diff line number Diff line change 99 deno coverage coverage --lcov > coverage/lcov.info
1010 genhtml -o coverage/html coverage/lcov.info
1111
12- fmt :
13- deno fmt * .ts * .md examples docs/twd.ts
14-
15- fmt-check :
16- deno fmt --check * .ts * .md examples
17-
18- lint :
19- deno lint * .ts
20-
2112ex-build :
2213 deno run -A cli.ts build examples/simple/index.html
2314
Original file line number Diff line number Diff line change 1+ {
2+ "fmt" : {
3+ "files" : {
4+ "exclude" : [
5+ " docs" ,
6+ " dist" ,
7+ " vendor" ,
8+ " coverage" ,
9+ " .git"
10+ ]
11+ }
12+ },
13+ "lint" : {
14+ "files" : {
15+ "exclude" : [
16+ " examples" ,
17+ " docs" ,
18+ " dist" ,
19+ " vendor" ,
20+ " coverage" ,
21+ " .git"
22+ ]
23+ }
24+ }
25+ }
You can’t perform that action at this time.
0 commit comments