-
-
Notifications
You must be signed in to change notification settings - Fork 4
60 lines (49 loc) · 1.2 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
name: Continuous Integration
on:
push:
branches:
- main
- dev
pull_request:
types:
- opened
- synchronize
branches:
- "**"
# schedule:
# - cron: "18 21 * * 6"
jobs:
integration:
name: Integration
runs-on: ${{ matrix.os }}
permissions:
contents: read # Needed to clone the repository
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
deno-version:
- 1.38.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Deno ${{ matrix.deno-version }}
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: Check formatting, linting, license headers, types and run tests
run: deno task ok
- name: Generate coverage report
run: deno task test:coverage-gen
- name: Upload coverage
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
name: ${{ matrix.os }}
files: ./_etc/coverage.lcov