We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e00e89e commit 891e7eeCopy full SHA for 891e7ee
.github/workflows/bundle-analysis.yml
@@ -0,0 +1,22 @@
1
+name: Build and Analyze
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ env:
12
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
13
14
+ steps:
15
+ - name: Checkout repo
16
+ uses: actions/checkout@v4
17
18
+ - name: Install dependencies
19
+ run: npm ci
20
21
+ - name: Build project with bundle analysis
22
+ run: npm run build
.github/workflows/ci.yml
@@ -67,11 +67,5 @@ jobs:
67
git remote -v
68
pnpm release:tag --dryRun
69
70
- codecov-step:
71
- name: Codecov
72
- runs-on: ubuntu-latest
73
- steps:
74
- - name: Upload coverage to Codecov
75
- run: pnpm codecov
76
- env:
77
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN || ''}}
0 commit comments