Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 3ea36a4

Browse files
committed
Revert "One more time"
This reverts commit fd8b559.
1 parent fd8b559 commit 3ea36a4

2 files changed

Lines changed: 2 additions & 20 deletions

File tree

.github/actions/yarn-install/action.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,7 @@ runs:
1111
uses: actions/setup-node@v3
1212
with:
1313
node-version: ${{ inputs.node_version }}
14-
- name: node_modules cache
15-
id: node-modules-cache
16-
uses: actions/cache@v3
17-
env:
18-
cache-name: node-modules-yarn
19-
cache-key: ${{ inputs.node_version }}-${{ hashFiles('yarn.lock', 'packages/prisma/schema.prisma') }}
20-
with:
21-
path: |
22-
**/node_modules/**
23-
packages/prisma/zod
24-
key: ${{ runner.os }}-${{ env.cache-name }}-${{ env.cache-key }}
14+
cache: "yarn"
2515
- name: Yarn install
2616
shell: bash
2717
run: |

.github/workflows/pr.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,32 +37,24 @@ jobs:
3737
uses: ./.github/workflows/env-create-file.yml
3838
secrets: inherit
3939

40-
setup:
41-
name: Yarn install & cache
42-
uses: ./.github/workflows/yarn-install.yml
43-
secrets: inherit
44-
4540
type-check:
4641
name: Type check
47-
needs: setup
4842
uses: ./.github/workflows/check-types.yml
4943
secrets: inherit
5044

5145
test:
5246
name: Unit tests
53-
needs: setup
5447
uses: ./.github/workflows/test.yml
5548
secrets: inherit
5649

5750
lint:
5851
name: Linters
59-
needs: setup
6052
uses: ./.github/workflows/lint.yml
6153
secrets: inherit
6254

6355
build:
6456
name: Production build
65-
needs: [setup, env]
57+
needs: env
6658
uses: ./.github/workflows/production-build.yml
6759
secrets: inherit
6860

0 commit comments

Comments
 (0)