ci: fix failing tests
Some checks failed
Test / Test (push) Failing after 8m51s

This commit is contained in:
Kim, Jimin 2025-06-01 20:57:33 +09:00
parent df6f471d10
commit 616bd1e577
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -21,11 +21,10 @@ jobs:
- run: nix --option sandbox false profile install nixpkgs#devenv
- uses: rharkor/caching-for-turbo@v1.8
- name: Run tests
shell: | # https://stackoverflow.com/a/78185023/12979111
HOME=$(mktemp -d) devenv shell bash -- -e {0}
run: |
pnpm install
pnpm lint
pnpm build
pnpm test:unit
pnpm test:e2e
export HOME=$(mktemp -d) # https://stackoverflow.com/a/78185023/12979111
devenv shell pnpm install
devenv shell pnpm lint
devenv shell pnpm build
devenv shell pnpm test:unit
devenv shell pnpm test:e2e