-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 865 Bytes
/
test.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
name: 🧪 Test
on:
push:
branches:
- main
- dev
paths:
- "**.ts"
- "deno.lock"
- ".github/workflows/test.yml"
pull_request:
paths:
- "**.ts"
- "deno.lock"
- ".github/workflows/test.yml"
jobs:
Test:
runs-on: Ubuntu-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@v4
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: 🧪 Run Tests
run: deno task cov
- name: 🧹 Lint Check
run: deno lint
- name: 📝 Format Check
run: deno fmt --check
- name: 🔍 Type Check
run: deno check ./**/*.ts
- name: 🦩 Upload Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}