File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 show-progress : false
2626 fetch-depth : 0
2727
28- - uses : oven-sh /setup-bun@v2
28+ - uses : actions /setup-node@v4
2929 with :
30- bun-version : latest
30+ node-version : 24.x
31+ cache : npm
3132
3233 - run : npm ci
3334 - run : npm run ci
Original file line number Diff line number Diff line change @@ -76,23 +76,22 @@ $EDITOR config.json
7676
7777Mit Hot-Reload:
7878``` sh
79- bun watch
79+ npm run watch
8080```
8181
8282Ohne Hot-Reload:
8383``` sh
84- bun start
84+ npm start
8585```
8686
8787### Housekeeping
8888Formatieren und Linten passiert durch lefthook automatisch beim Committen/Pushen. Manuell kannst du das machen:
89- - Formatieren: ` bun format `
90- - Linten: ` bun lint `
91- - Fixbare Linter-Fehler automatisch fixen: ` bun lint:fix `
92- - Fixbare, aber möglicherweise falsche Fixes anwenden: ` bun lint:fix:unsafe `
93- - CI-Checks lokal laufen lassen: ` bun ci `
94- - Unit-Tests ausführen: ` bun test `
95- - Nur Tests, die auf ein Pattern matchen: ` bun test <pattern> ` (z. B. ` bun test smoke ` )
89+ - Formatieren: ` npm run format `
90+ - Linten: ` npm run lint `
91+ - Fixbare Linter-Fehler automatisch fixen: ` npm run lint:fix `
92+ - Fixbare, aber möglicherweise falsche Fixes anwenden: ` npm run lint:fix:unsafe `
93+ - CI-Checks lokal laufen lassen: ` npm run ci `
94+ - Unit-Tests ausführen: ` npm test `
9695
9796## ❄ Nix
9897Entweder via ` nix-shell ` oder ` nix develop ` letzteres benötigt Nix-Flake support.
Original file line number Diff line number Diff line change 1515 {
1616 devShell = pkgs . mkShell {
1717 buildInputs = with pkgs ; [
18- bun
1918 nixpkgs-fmt
2019 pixman
2120 pkg-config
2221 cairo
2322 pango
2423 biome
25- nodejs_22
24+ nodejs_24
2625 typescript
2726 ] ++ lib . optionals stdenv . isDarwin ( with darwin . apple_sdk . frameworks ; [
2827 CoreText
You can’t perform that action at this time.
0 commit comments