-
-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (94 loc) · 2.17 KB
/
regression.yml
File metadata and controls
112 lines (94 loc) · 2.17 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: Regression
on:
push:
branches:
- main
paths:
- "*.json"
- "*.yml"
- "packages/**"
- "!**.md"
pull_request:
branches:
- main
paths:
- "*.json"
- "*.yml"
- "packages/**"
- "!**.md"
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: true
permissions:
contents: read
pull-requests: read
jobs:
build:
name: Build Artifacts
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Environment
uses: 0xTheProDev/setup-js@v1
with:
cache: bun
cache-version-file: .bun-version
version-file: .nvmrc
- name: Run Build
run: yarn build
test:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Environment
uses: 0xTheProDev/setup-js@v1
with:
cache: bun
cache-version-file: .bun-version
version-file: .nvmrc
- name: Run Tests
run: yarn test:cov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Environment
uses: 0xTheProDev/setup-js@v1
with:
cache: bun
cache-version-file: .bun-version
version-file: .nvmrc
- name: Run Lint
run: yarn lint
- name: Run Format
run: yarn format
typecheck:
name: Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Environment
uses: 0xTheProDev/setup-js@v1
with:
cache: bun
cache-version-file: .bun-version
version-file: .nvmrc
- name: Run Types
run: yarn typecheck