Skip to content

Commit be1a217

Browse files
committed
Merge branch 'develop' into bugfix/serial-subcommands
2 parents 5ca51f3 + 6f3f4fb commit be1a217

File tree

113 files changed

+2376
-2070
lines changed

Some content is hidden

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

113 files changed

+2376
-2070
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-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: 7 additions & 6 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",
12+
"@actions/github": "^6.0.1",
1313
"ini": "^5.0.0",
14-
"semver": "^7.7.0"
14+
"semver": "^7.7.2"
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": "[email protected]"
2324
}

.github/scripts/pnpm-lock.yaml

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

.github/workflows/ci-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ on:
1818
name: ci-build
1919

2020
env:
21-
PNPM_VERSION: 9
22-
NODE_VERSION: 20
21+
PNPM_VERSION: 10.6.4
22+
NODE_VERSION: 22.14.0
2323
PYTHON_VERSION: 3.12
2424

2525
jobs:

.github/workflows/get-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ on:
1010
inputs:
1111
pnpm-version:
1212
type: string
13-
default: '9'
13+
default: '10.6.4'
1414
description: 'The pnpm version to use'
1515
node-version:
1616
type: string
17-
default: '20'
17+
default: '22.14.0'
1818
description: 'The Node.js version to use'
1919
outputs:
2020
version:

frontend/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.0
1+
22.14.0

frontend/components.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"style": "default",
44
"tailwind": {
55
"config": "tailwind.config.ts",
6-
"css": "src\\app.tcss",
7-
"baseColor": "slate"
6+
"css": "src\\app.css",
7+
"baseColor": "neutral"
88
},
99
"aliases": {
1010
"components": "$lib/components",

frontend/eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default ts.config(
2828
languageOptions: {
2929
parserOptions: {
3030
parser: ts.parser,
31+
ecmaVersion: 2020,
3132
},
3233
},
3334
}

0 commit comments

Comments
 (0)