feat: build and deploy with netlify
Some checks failed
Build and deploy / lint (push) Failing after 1m5s

This commit is contained in:
Iain Learmonth 2025-06-03 16:48:47 +01:00
parent 20d45dca90
commit b2beb39b92
5 changed files with 148 additions and 1 deletions

View file

@ -0,0 +1,31 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
git
netlify-cli
nodejs_22
];
};
}
);
}