-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (57 loc) · 1.73 KB
/
pull-request-checks-workflow.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
55
56
57
58
59
60
61
62
63
64
65
name: 🔗Pull Request Checks Workflow
on:
pull_request:
branches:
- main
jobs:
checks:
name: 🫸 Pull Request Checks
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🧩 Install dependencies
uses: ./.github/actions/setup
with:
github_packages_token: ${{ secrets.GH_PACKAGES_TOKEN }}
- name: 💅 Format code
shell: sh
run: |
pnpm --recursive --shell-mode exec biome ci \
--max-diagnostics=none \
--vcs-enabled=true \
--vcs-use-ignore-file=true \
--vcs-root="../../" \
--formatter-enabled=true \
--linter-enabled=false \
--organize-imports-enabled=true \
--reporter=github
- name: 🚨 Lint code
shell: sh
run: |
pnpm --recursive --shell-mode exec biome ci \
--max-diagnostics=none \
--vcs-enabled=true \
--vcs-use-ignore-file=true \
--vcs-root="../../" \
--formatter-enabled=false \
--linter-enabled=true \
--organize-imports-enabled=false \
--reporter=github .
- name: 🔍 Typecheck code
continue-on-error: true
run: pnpm typecheck
- name: 🧪 Run unit tests
run: pnpm test:unit
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: suddenlyGiovanni/suddenlygiovanni.dev
working-directory: apps/web
directory: coverage
fail_ci_if_error: false
- name: 🏗️ Build project
run: pnpm build