We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f121a4 commit 3a03f49Copy full SHA for 3a03f49
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
+ - "!main"
8
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: denoland/setup-deno@v2
15
+ - run: deno lint
16
17
+ format:
18
19
20
21
22
+ - run: deno fmt --check
23
24
+ check:
25
26
27
28
29
+ - run: deno task check
30
31
+ test:
32
33
34
35
36
+ - run: deno task test
0 commit comments