ci: fix failing tests
Some checks failed
Test / Test (push) Failing after 6m57s

This commit is contained in:
Kim, Jimin 2025-06-01 19:01:44 +09:00
parent c85c24045f
commit 0691a7e2c7
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 8 additions and 6 deletions

View file

@ -17,9 +17,10 @@ jobs:
- uses: cachix/install-nix-action@v31
- run: nix profile install nixpkgs#devenv
- uses: rharkor/caching-for-turbo@v1.8
# https://github.com/NixOS/nixpkgs/issues/16144#issuecomment-225422439
- run: HOME=$TMP devenv shell pnpm install
- run: HOME=$TMP devenv shell pnpm lint
- run: HOME=$TMP devenv shell pnpm build
- run: HOME=$TMP devenv shell pnpm test:unit
- run: HOME=$TMP devenv shell pnpm test:e2e
- run: |
export HOME=$(mktemp -d)
devenv shell pnpm install
devenv shell pnpm lint
devenv shell pnpm build
devenv shell pnpm test:unit
devenv shell pnpm test:e2e