Skip to content

Commit 6480cad

Browse files
committed
Merge branch 'develop' into feature/ditch-arduino-serial
2 parents bfff974 + 46b01c2 commit 6480cad

File tree

118 files changed

+2747
-2256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+2747
-2256
lines changed

.changeset/mighty-pets-report.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'frontend': patch
3+
---
4+
5+
Improve authtoken handling in 401 responses
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'firmware': patch
3+
---
4+
5+
fix: Serial now uses CRLF rather than just LF for better compatibility

.github/actions/build-firmware/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ runs:
2121
- uses: actions/cache@v4
2222
with:
2323
path: |
24+
.pio/libdeps
2425
~/.platformio/platforms
2526
~/.platformio/packages
2627
~/.platformio/.cache

.github/actions/build-frontend/action.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,16 @@ runs:
4343
shell: bash
4444
run: pnpm run check
4545

46-
- name: Install playwright
47-
working-directory: ./frontend
48-
shell: bash
49-
run: pnpx playwright install --with-deps
46+
# FIXME: Playwirght is not working: Error: browserType.launch: Executable doesn't exist at /home/runner/.cache/ms-playwright/chromium_headless_shell-1161/chrome-linux/headless_shell
47+
# - name: Install playwright
48+
# working-directory: ./frontend
49+
# shell: bash
50+
# run: pnpx playwright install --with-deps
5051

5152
- name: Test
5253
working-directory: ./frontend
5354
shell: bash
54-
run: pnpm test
55+
run: pnpm test:unit # TODO: Change back to pnpm test when playwright is working
5556

5657
- name: Build
5758
working-directory: ./frontend

.github/scripts/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@
99
},
1010
"dependencies": {
1111
"@actions/core": "^1.10.1",
12-
"@actions/github": "^6.0.0",
13-
"ini": "^5.0.0",
14-
"semver": "^7.7.0"
12+
"@actions/github": "^6.0.1",
13+
"ini": "^6.0.0",
14+
"semver": "^7.7.3"
1515
},
1616
"engines": {
17-
"node": ">=20.18",
18-
"pnpm": ">=9"
17+
"node": "^22.14.0",
18+
"pnpm": "^10.6.4"
1919
},
2020
"volta": {
21-
"node": "20.18.0"
22-
}
21+
"node": "22.14.0"
22+
},
23+
"packageManager": "pnpm@10.6.4"
2324
}

.github/scripts/pnpm-lock.yaml

Lines changed: 64 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)