ci: add devshell with Node.js for forgejo actions
Some checks failed
Flake checks / Check (pull_request) Failing after 1s

This commit is contained in:
teutat3s 2024-05-29 18:05:05 +02:00
parent 559d08d09d
commit 2dd049ea77
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 9 additions and 0 deletions

View file

@ -5,6 +5,10 @@ jobs:
Check:
runs-on: self-hosted
steps:
- name: Enter ci devshell
run: |
nix --accept-flake-config --access-tokens '' develop .#ci
- name: Check out repository code
uses: https://code.forgejo.org/actions/checkout@v4

View file

@ -91,6 +91,11 @@
jq
];
};
devShells.ci = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
];
};
};
flake =