File tree 3 files changed +48
-20
lines changed
3 files changed +48
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ workflow_dispatch :
8
+
9
+ jobs :
10
+ check :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+ - uses : denoland/setup-deno@v1
15
+ with :
16
+ deno-version : v1.36.x
17
+ - id : fmt
18
+ run : deno fmt
19
+ - id : lint
20
+ run : deno lint
21
+ test :
22
+ runs-on : ubuntu-latest
23
+ steps :
24
+ - uses : actions/checkout@v3
25
+ - uses : denoland/setup-deno@v1
26
+ with :
27
+ deno-version : v1.36.x
28
+ - id : test
29
+ run : deno test
30
+
31
+ run_self :
32
+ runs-on : ubuntu-latest
33
+ needs : [ check, test ]
34
+ steps :
35
+ - uses : actions/checkout@v3
36
+ - uses : denoland/setup-deno@v1
37
+ with :
38
+ deno-version : v1.36.x
39
+ - run : deno task bundle
40
+ - name : Run self action
41
+ uses : ./
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"tasks" : {
3
3
"bundle" : "deno run -A scripts/build.ts 0.1.0"
4
+ } ,
5
+ "fmt" : {
6
+ "exclude" : [ "./dist/" , "./npm/" ] ,
7
+ "proseWrap" : "preserve"
8
+ } ,
9
+ "lint" : {
10
+ "exclude" : [ "./dist/" , "./npm/" ]
4
11
}
5
12
}
You can’t perform that action at this time.
0 commit comments