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 1212 steps :
1313 - name : Checkout
1414 uses : actions/checkout@v3
15-
15+
1616 - name : Setup Deno
1717 uses : denoland/setup-deno@v1
1818 with :
@@ -21,14 +21,14 @@ jobs:
2121 - name : Check types
2222 run : deno task check
2323
24- # - name: Test
25- # run: deno test --allow-env --allow-net --lock=lock.json
26-
2724 - name : Lint
2825 run : deno lint
2926
3027 - name : Format
3128 run : deno fmt --check
3229
30+ - name : Test
31+ run : deno task test
32+
3333 - 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
4545- ` "generate" ` : Generate GraphQL types/documents
4646- ` "run" ` : Run the CLI in development mode e.g.
4747 ` deno task run [command] [--options] `
48+ - ` "test" ` : Run the test suite
49+
50+ ## Formatting code
51+
52+ Run ` deno fmt ` to format the code
4853
4954## Testing a binary
5055
You can’t perform that action at this time.
0 commit comments