This repository was archived by the owner on Mar 3, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments