Skip to content

Commit 46baa08

Browse files
committed
TEMP: Add test modification to establish modified baseline
This removes one pattern from regex.json before comparison. Next run with real data will detect the difference and create issue. Will be reverted after testing.
1 parent 0c28913 commit 46baa08

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/verify-tinytex-patterns.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ jobs:
3636
path: .cache/regex.json
3737
key: tinytex-regex-latest
3838

39+
# TEMPORARY: Remove one pattern to test diff detection (will be reverted)
40+
- name: Modify regex.json for testing
41+
run: |
42+
# Remove the first pattern from the 'font' category
43+
jq 'del(.font[0])' regex.json > regex-test.json
44+
mv regex-test.json regex.json
45+
echo "Modified regex.json for diff testing (removed first font pattern)"
46+
3947
- name: Compare versions
4048
id: compare
4149
run: |

0 commit comments

Comments
 (0)