Skip to content

Commit 6b78247

Browse files
committed
test: More e2e debugging
1 parent 561f14f commit 6b78247

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
timeout-minutes: 10
3838
steps:
3939
- run: sudo apt-get install -y fonts-cantarell && sudo fc-cache -fv
40+
- run: cp .github/workflows/fonts.conf ~/.config/fontconfig/fonts.conf
4041
- uses: actions/checkout@v4
4142
- uses: oven-sh/setup-bun@v2
4243
with:

.github/workflows/fonts.conf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0"?>
2+
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
3+
<fontconfig>
4+
<match target="pattern">
5+
<test name="family" qual="any">
6+
<string>sans-serif</string>
7+
</test>
8+
<edit name="family" mode="prepend" binding="strong">
9+
<string>Cantarell</string>
10+
</edit>
11+
</match>
12+
</fontconfig>

0 commit comments

Comments
 (0)