From dbf2f9f6fca28ea06c02808d51ffb834b5282f62 Mon Sep 17 00:00:00 2001 From: nydragon Date: Sat, 1 Mar 2025 15:13:36 +0100 Subject: [PATCH] fix: test --- .forgejo/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 0a0d920..e49d5d6 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -2,8 +2,8 @@ on: [push] jobs: test: - runs-on: debian-latest - container: - image: nixos/nix - steps: - - run: nix flake check --verbose + runs-on: nix-latest + steps: + - run: nix --experimental-features 'nix-command flakes' profile install nixpkgs#nodejs-slim + - uses: actions/checkout@v4 + - run: nix --experimental-features 'nix-command flakes' flake check --verbose