-
Notifications
You must be signed in to change notification settings - Fork 1
94 lines (71 loc) · 2.21 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: 🎽 CI
on:
push:
branches:
- main
paths:
- "**.ts"
- deno.lock
- .github/workflows/ci.yml
pull_request:
paths:
- "**.ts"
- deno.lock
- .github/workflows/ci.yml
jobs:
lint:
name: 🧹 Lint
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🦕 Setup Deno with Cache
uses: ./.github/actions/setup-deno-with-cache
- name: 🧹 Lint Check
run: deno lint
- name: 📚 Lint the JSDoc
run: deno doc --lint ./src
format:
name: 📝 Format
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🦕 Setup Deno with Cache
uses: ./.github/actions/setup-deno-with-cache
- name: 📝 Format Check
run: deno fmt --check
type-check:
name: 🔍 Type Check
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🦕 Setup Deno with Cache
uses: ./.github/actions/setup-deno-with-cache
- name: 🔍 Type Check
run: deno check --doc ./src
test:
name: 🧪 Test
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🦕 Setup Deno with Cache
uses: ./.github/actions/setup-deno-with-cache
- name: 🧪 Run Tests
run: deno task cov
- name: ☂️ Upload Coverage
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
dry-run-publish:
name: 📦 Dry Run Publish
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🦕 Setup Deno with Cache
uses: ./.github/actions/setup-deno-with-cache
- name: 📦 Dry Run Publish
run: deno publish --dry-run