Skip to content

Commit 44dcfe7

Browse files
docs: update contributing file (#15)
1 parent 10c45bf commit 44dcfe7

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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

CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)