-
-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (45 loc) · 1.3 KB
/
ci.yml
File metadata and controls
59 lines (45 loc) · 1.3 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
name: ci
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: lts/*
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: 🔠 Lint project
run: pnpm lint
- name: ✂️ Knip project
run: pnpm test:knip
- name: ⚙️ Check package engines
run: pnpm test:versions
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: lts/*
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: 🛠 Build project
run: pnpm build
- name: 💪 Test types
run: pnpm test:types
- name: 🧪 Test project
run: pnpm test:unit -- --coverage
- name: 🟩 Coverage
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5