+19
.tangled/workflows/test.yml
+19
.tangled/workflows/test.yml
···
1
+
when:
2
+
- event: ["push", "pull_request"]
3
+
4
+
dependencies:
5
+
nixpkgs:
6
+
- deno
7
+
8
+
steps:
9
+
- name: check types
10
+
command: deno check
11
+
12
+
- name: run tests
13
+
command: deno test
14
+
15
+
- name: lint
16
+
command: deno lint
17
+
18
+
- name: check formatting
19
+
command: deno fmt --check