add nix shell file to build background.js
Testing / test (push) Failing after 14m25s

This commit is contained in:
2026-05-01 19:39:33 +02:00
parent 1b0e090466
commit 6f7c4fc7ea
2 changed files with 22 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
nodejs_22
uv
python3
];
shellHook = ''
echo "browser-cli dev shell: node $(node --version), npm $(npm --version), uv $(uv --version)"
'';
}