We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 561f14f commit 6b78247Copy full SHA for 6b78247
.github/workflows/ci.yml
@@ -37,6 +37,7 @@ jobs:
37
timeout-minutes: 10
38
steps:
39
- run: sudo apt-get install -y fonts-cantarell && sudo fc-cache -fv
40
+ - run: cp .github/workflows/fonts.conf ~/.config/fontconfig/fonts.conf
41
- uses: actions/checkout@v4
42
- uses: oven-sh/setup-bun@v2
43
with:
.github/workflows/fonts.conf
@@ -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