You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/bundle-size.yml
+5-5
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,8 @@ jobs:
22
22
matrix:
23
23
node-version: [18.x]
24
24
ref:
25
-
- ${{ github.event.pull_request.base.ref }}
26
-
- ${{ github.event.pull_request.head.ref }}
25
+
- ${{ github.event.pull_request.base.sha }}
26
+
- ${{ github.event.pull_request.head.sha }}
27
27
fail-fast: true
28
28
steps:
29
29
- uses: actions/checkout@v4
@@ -45,7 +45,7 @@ jobs:
45
45
- run: corepack enable
46
46
- run: yarn install --immutable
47
47
- run: |
48
-
yarn workspace ott-client run build | sed -r 's/([a-zA-Z]+-)[^ .]+(\.[^ ]+)/\1hash\2/' | sed 's/\x1B\[[0-9;]\{1,\}[A-Za-z]//g' | tee /tmp/bundle-size.txt
48
+
yarn workspace ott-client run build | sed -r 's/([a-zA-Z]+-)[^ .]+(\.[^ ]+)/\1hash\2/' | sed 's/\x1B\[[0-9;]\{1,\}[A-Za-z]//g' | grep -v "built in" | tee /tmp/bundle-size.txt
0 commit comments