Skip to content

Commit a541940

Browse files
committed
Changepacks publish
1 parent fa38e71 commit a541940

5 files changed

Lines changed: 12 additions & 8 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"libs/braillify/Cargo.toml":"Patch","packages/node/package.json":"Patch","packages/python/pyproject.toml":"Patch"},"note":"Changepacks publish","date":"2025-11-21T15:38:10.051001700Z"}

.github/workflows/publish.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ jobs:
5757
run: bun run lint
5858
- name: Test
5959
run: bun run test
60+
- name: Upload to codecov.io
61+
uses: codecov/codecov-action@v5
62+
with:
63+
token: ${{ secrets.CODECOV_TOKEN }}
64+
fail_ci_if_error: true
65+
if: github.ref == 'refs/heads/main'
66+
6067
deploy-landing:
6168
name: Deploy Landing
6269
runs-on: ubuntu-latest
@@ -94,11 +101,6 @@ jobs:
94101
with:
95102
path: ./apps/landing/out
96103
- uses: actions/deploy-pages@v4
97-
- name: Upload to codecov.io
98-
uses: codecov/codecov-action@v5
99-
with:
100-
token: ${{ secrets.CODECOV_TOKEN }}
101-
fail_ci_if_error: true
102104

103105
# publish
104106
changepacks:

apps/landing/src/components/test-case/TestCaseCircle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function TestCaseCircle({
1818
bg={isSuccess ? '$success' : '$error'}
1919
borderRadius="100px"
2020
boxSize="16px"
21-
cursor="pointer"
21+
cursor="zoom-in"
2222
/>
2323
<Tooltip>{children}</Tooltip>
2424
</Box>

apps/landing/src/components/test-case/Tooltip.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ import { useEffect } from 'react'
77
export default function Tooltip({ children }: { children: React.ReactNode }) {
88
const [viewportWidth, setViewportWidth] = useState(0)
99
const ref = useRef<HTMLDivElement>(null)
10-
if (typeof window !== 'undefined') setViewportWidth(window.innerWidth)
10+
if (typeof window !== 'undefined' && viewportWidth !== window.innerWidth)
11+
setViewportWidth(window.innerWidth)
1112
useEffect(() => {
1213
const handleResize = () => {
1314
setViewportWidth(window.innerWidth)

packages/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ classifiers = [
1010
"Programming Language :: Python :: Implementation :: CPython",
1111
"Programming Language :: Python :: Implementation :: PyPy",
1212
]
13-
dynamic = ["version"]
13+
version = "1.0.3"
1414
[tool.maturin]
1515
features = ["pyo3/extension-module"]
1616

0 commit comments

Comments
 (0)