diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15eac3f..109c1f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: node-version-file: .node-version cache: pnpm - run: pnpm install --frozen-lockfile + - run: pnpm prisma generate - run: pnpm typecheck lint: @@ -39,6 +40,7 @@ jobs: node-version-file: .node-version cache: pnpm - run: pnpm install --frozen-lockfile + - run: pnpm prisma generate - run: pnpm lint format: @@ -54,6 +56,7 @@ jobs: node-version-file: .node-version cache: pnpm - run: pnpm install --frozen-lockfile + - run: pnpm prisma generate - run: pnpm format:check test: @@ -69,4 +72,5 @@ jobs: node-version-file: .node-version cache: pnpm - run: pnpm install --frozen-lockfile + - run: pnpm prisma generate - run: pnpm test