Skip to content

Commit 4337b1f

Browse files
committed
Merge dev into v1: TRMNL X full-card layout fix + preview tooling (v1.17.4)
2 parents 69fd3dd + 1305d12 commit 4337b1f

12 files changed

Lines changed: 2176 additions & 916 deletions

File tree

.github/workflows/pr-check.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: PR Checks
2+
3+
on:
4+
pull_request:
5+
branches: [dev, v1, main]
6+
push:
7+
branches: [dev, v1]
8+
9+
permissions:
10+
contents: read
11+
12+
concurrency:
13+
group: pr-check-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
typecheck-and-test:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: 22
25+
cache: npm
26+
27+
- name: Install dependencies
28+
run: npm ci
29+
30+
- name: Typecheck
31+
run: npm run typecheck
32+
33+
- name: Test
34+
run: npm test

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ build
44
.DS_Store
55
*.sqlite
66
data
7-
.claude
7+
.claude
8+
9+
flight-preview.html

flight-preview.html

Lines changed: 0 additions & 845 deletions
This file was deleted.

0 commit comments

Comments
 (0)