-
Notifications
You must be signed in to change notification settings - Fork 1
113 lines (95 loc) · 2.89 KB
/
ci.yml
File metadata and controls
113 lines (95 loc) · 2.89 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
113
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: Lint & Format
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 1
- name: Setup Bun Environment
uses: ./.github/actions/setup-bun-env
- name: Lint & Type Check
run: bun turbo lint type-check
test:
name: Test & Coverage
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 1
- name: Fetch base branch
if: github.event_name == 'pull_request'
run: git fetch origin ${{ github.base_ref || 'main' }}:${{ github.base_ref || 'main' }}
- name: Setup Bun Environment
uses: ./.github/actions/setup-bun-env
- name: Run Tests
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
bun turbo test --filter="...[${{ github.base_ref }}]"
else
bun turbo test
fi
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
build:
name: Build
needs: [lint, test]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 1
- name: Setup Bun Environment
uses: ./.github/actions/setup-bun-env
- name: Build
run: bun run build
- name: Check Exports
run: bun turbo check:exports
- name: Upload build artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: build-artifacts
path: packages/*/dist
retention-days: 1
check-changeset:
name: Check Changeset
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Check Changeset
run: echo "Skipping changeset status check"
ci-gate:
name: CI Gate
needs: [lint, test, build, check-changeset]
if: always()
runs-on: ubuntu-latest
steps:
- name: Check results
run: |
results=("${{ needs.lint.result }}" "${{ needs.test.result }}" "${{ needs.build.result }}" "${{ needs.check-changeset.result }}")
for r in "${results[@]}"; do
if [[ "$r" != "success" && "$r" != "skipped" ]]; then
echo "Job failed with result: $r"
exit 1
fi
done