-
-
Notifications
You must be signed in to change notification settings - Fork 718
112 lines (98 loc) · 2.82 KB
/
ci.yml
File metadata and controls
112 lines (98 loc) · 2.82 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
Testing:
name: Compile source code and run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x, 22.x]
os: [ubuntu-latest, windows-latest]
ts-project: [tsconfig.json]
exclude:
- node-version: 22.x
os: ubuntu-latest
ts-project: tsconfig.json
env:
TS_NODE_PROJECT: ${{ matrix.ts-project }}
steps:
- name: Checkout Project
uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 10.16.1
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Compile source code
run: pnpm run build
- name: Run tests
run: pnpm test
Upload_Coverage_Report:
name: Upload coverage report to codecov
environment: CI
env:
TS_NODE_PROJECT: tsconfig.json
needs: [Testing]
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.19.0
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 10.16.1
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Compile source code
run: pnpm run build
- name: Run linter
run: pnpm run lint
- name: Run tests
run: pnpm test --coverage
- name: Codecov Upload
uses: codecov/codecov-action@v5
with:
directory: coverage/
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}