ci: fix failing tests

This commit is contained in:
Kim, Jimin 2025-06-01 06:43:27 +09:00
parent 2c697ddc14
commit ac87810e0a
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -13,9 +13,6 @@ jobs:
# permissions required for nix caching to work properly
id-token: write
contents: read
defaults:
run:
shell: devenv shell bash -- -e {0}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
@ -24,11 +21,12 @@ jobs:
name: devenv
- name: Install devenv.sh
run: nix profile install nixpkgs#devenv
shell: bash -e {0}
- name: Cache turbo build
uses: dtinth/setup-github-actions-caching-for-turbo@v1
- run: pnpm install
- run: pnpm lint
- run: pnpm build
- run: pnpm test:unit
- run: pnpm test:e2e
- shell: devenv shell bash -- -e {0}
run: |
pnpm install
pnpm lint
pnpm build
pnpm test:unit
pnpm test:e2e