-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (44 loc) · 1.08 KB
/
ci-cd.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
name: CI/CD Pipeline
on:
push:
branches:
- 'develop'
- 'main'
pull_request:
branches:
- 'develop'
- 'main'
jobs:
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
# Checkout code
- name: Checkout Code
uses: actions/checkout@v3
# Set up Node.js (latest stable version)
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
# Install pnpm
- name: Install pnpm
run: npm install -g pnpm
# Install dependencies
- name: Install Dependencies
run: pnpm install
# Lint the code
- name: Run Linter
run: pnpm lint
# Run tests with coverage
- name: Run Tests
run: pnpm coverage
# Build the project
- name: Build Project
run: pnpm build
- name: Upload Coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4