ci: fix failing tests

This commit is contained in:
Kim, Jimin 2025-06-02 13:58:41 +09:00
parent 7f239c85f9
commit 923c965b8d
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -26,21 +26,21 @@ jobs:
export HOME=$(mktemp -d)
# https://github.com/NixOS/nix/issues/670#issuecomment-304524165
export NIX_STORE_DIR=$HOME/nix/store # binary cache 'https://cache.nixos.org' is for Nix stores with prefix '/nix/store'
export NIX_STORE_DIR=/nix/store # binary cache 'https://cache.nixos.org' is for Nix stores with prefix '/nix/store'
export NIX_STATE_DIR=$HOME/nix/var/nix
export NIX_LOG_DIR=$HOME/nix/var/log/nix
echo pnpm install
echo pnpm install
devenv shell --nix-option sandbox true pnpm install
echo pnpm lint
echo pnpm lint
devenv shell --nix-option sandbox true pnpm lint
echo pnpm build
echo pnpm build
devenv shell --nix-option sandbox true pnpm build
echo pnpm test:unit
echo pnpm test:unit
devenv shell --nix-option sandbox true pnpm test:unit
echo pnpm test:e2e
echo pnpm test:e2e
devenv shell --nix-option sandbox true pnpm test:e2e