File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 12
12
steps :
13
13
- name : Checkout
14
14
uses : actions/checkout@v3
15
-
15
+
16
16
- name : Setup Deno
17
17
uses : denoland/setup-deno@v1
18
18
with :
@@ -21,14 +21,14 @@ jobs:
21
21
- name : Check types
22
22
run : deno task check
23
23
24
- # - name: Test
25
- # run: deno test --allow-env --allow-net --lock=lock.json
26
-
27
24
- name : Lint
28
25
run : deno lint
29
26
30
27
- name : Format
31
28
run : deno fmt --check
32
29
30
+ - name : Test
31
+ run : deno task test
32
+
33
33
- name : Build
34
- run : deno task compile
34
+ run : deno task compile
Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ pnpm install
45
45
- ` "generate" ` : Generate GraphQL types/documents
46
46
- ` "run" ` : Run the CLI in development mode e.g.
47
47
` deno task run [command] [--options] `
48
+ - ` "test" ` : Run the test suite
49
+
50
+ ## Formatting code
51
+
52
+ Run ` deno fmt ` to format the code
48
53
49
54
## Testing a binary
50
55
You can’t perform that action at this time.
0 commit comments