tangled
alpha
login
or
join now
fuwn.net
/
laurali
0
fork
atom
๐ง An object-oriented Gemini server for Deno!
gemini-protocol
deno
typescript
gemini
0
fork
atom
overview
issues
pulls
pipelines
ci(github): setup deno workflow
fuwn.net
3 years ago
f6f4cd6a
6deffaad
verified
This commit was signed with the committer's
known signature
.
fuwn.net
SSH Key Fingerprint:
SHA256:VPdFPyPbd6JkoMyWUdZ/kkTcIAt3sxjXD2XSAZ7FYC4=
+33
1 changed file
expand all
collapse all
unified
split
.github
workflows
deno.yml
+33
.github/workflows/deno.yml
···
1
1
+
name: ๐ฆ Deno
2
2
+
3
3
+
on:
4
4
+
push:
5
5
+
branches: [main]
6
6
+
pull_request:
7
7
+
branches: [main]
8
8
+
9
9
+
permissions:
10
10
+
contents: read
11
11
+
12
12
+
jobs:
13
13
+
test:
14
14
+
runs-on: ubuntu-latest
15
15
+
16
16
+
steps:
17
17
+
- name: ๐ Setup repo
18
18
+
uses: actions/checkout@v3
19
19
+
20
20
+
- name: ๐ฟ Setup Deno
21
21
+
# uses: denoland/setup-deno@v1
22
22
+
uses: denoland/setup-deno@004814556e37c54a2f6e31384c9e18e983317366
23
23
+
with:
24
24
+
deno-version: v1.x
25
25
+
26
26
+
- name: ๐ Verify formatting
27
27
+
run: deno fmt --check
28
28
+
29
29
+
- name: ๐งผ Run linter
30
30
+
run: deno lint
31
31
+
32
32
+
- name: ๐งช Run tests
33
33
+
run: deno test -A --unstable