diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 47290cb..e9326b6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Run NixOS VM test run: | echo "Running ${{ matrix.test }} test..." - nix build .#checks.x86_64-linux.${{ matrix.test }} -L --accept-flake-config + nix build .#checks.x86_64-linux.${{ matrix.test }} --quiet --accept-flake-config - name: Push to Attic cache if: success() @@ -69,7 +69,7 @@ jobs: run: nix develop --command bash -c "cd frontend && npm run check" - name: Nix - Flake check - run: nix flake check --accept-flake-config + run: nix flake check --quiet --accept-flake-config # Unit tests unit-tests: @@ -115,7 +115,7 @@ jobs: - name: Build backend package run: | echo "Building backend package..." - nix build .#backend -L --accept-flake-config + nix build .#backend --quiet --accept-flake-config - name: Push backend to Attic if: success() @@ -124,7 +124,7 @@ jobs: - name: Build frontend package run: | echo "Building frontend package..." - nix build .#frontend -L --accept-flake-config + nix build .#frontend --quiet --accept-flake-config - name: Push frontend to Attic if: success()