@@ -95,49 +95,49 @@ jobs:
95
95
- name : 🔬 Lint
96
96
run : pnpm lint
97
97
98
- typecheck :
99
- name : ʦ TypeScript
100
- runs-on : ubuntu-latest
101
- steps :
102
- - name : ⬇️ Checkout repo
103
- uses : actions/checkout@v4
104
-
105
- - name : ⎔ Setup node
106
- uses : actions/setup-node@v4
107
- with :
108
- node-version : 18
109
-
110
- - name : 📦 Setup pnpm
111
- uses : pnpm/action-setup@v2
112
- with :
113
- version : 8
114
- run_install : false
115
-
116
- - name : 📁 Get pnpm store directory
117
- shell : bash
118
- run : |
119
- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
120
-
121
- - name : ♻️ Setup pnpm cache
122
- uses : actions/cache@v3
123
- with :
124
- path : ${{ env.STORE_PATH }}
125
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
126
- restore-keys : |
127
- ${{ runner.os }}-pnpm-store-
128
-
129
- - name : 📥 Install deps
130
- run : pnpm install
131
-
132
- - name : 🛠 Generate Prisma Client
133
- run : pnpm dlx prisma generate --schema=./prisma/schema.prisma
134
- - name : 🔎 Type check
135
- run : pnpm typecheck
98
+ # typecheck:
99
+ # name: ʦ TypeScript
100
+ # runs-on: ubuntu-latest
101
+ # steps:
102
+ # - name: ⬇️ Checkout repo
103
+ # uses: actions/checkout@v4
104
+
105
+ # - name: ⎔ Setup node
106
+ # uses: actions/setup-node@v4
107
+ # with:
108
+ # node-version: 18
109
+
110
+ # - name: 📦 Setup pnpm
111
+ # uses: pnpm/action-setup@v2
112
+ # with:
113
+ # version: 8
114
+ # run_install: false
115
+
116
+ # - name: 📁 Get pnpm store directory
117
+ # shell: bash
118
+ # run: |
119
+ # echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
120
+
121
+ # - name: ♻️ Setup pnpm cache
122
+ # uses: actions/cache@v3
123
+ # with:
124
+ # path: ${{ env.STORE_PATH }}
125
+ # key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
126
+ # restore-keys: |
127
+ # ${{ runner.os }}-pnpm-store-
128
+
129
+ # - name: 📥 Install deps
130
+ # run: pnpm install
131
+
132
+ # - name: 🛠 Generate Prisma Client
133
+ # run: pnpm dlx prisma generate --schema=./prisma/schema.prisma
134
+ # - name: 🔎 Type check
135
+ # run: pnpm typecheck
136
136
137
137
build :
138
138
name : ' ⚙️ Build'
139
139
runs-on : ubuntu-latest
140
- needs : [format, lint, typecheck ]
140
+ needs : [format, lint]
141
141
steps :
142
142
- name : ⬇️ Checkout repo
143
143
uses : actions/checkout@v4
0 commit comments