Skip to content

Commit f5d3fa8

Browse files
authored
Update deploy.yml
1 parent ba47dec commit f5d3fa8

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

.github/workflows/deploy.yml

+39-39
Original file line numberDiff line numberDiff line change
@@ -95,49 +95,49 @@ jobs:
9595
- name: 🔬 Lint
9696
run: pnpm lint
9797

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
136136

137137
build:
138138
name: '⚙️ Build'
139139
runs-on: ubuntu-latest
140-
needs: [format, lint, typecheck]
140+
needs: [format, lint]
141141
steps:
142142
- name: ⬇️ Checkout repo
143143
uses: actions/checkout@v4

0 commit comments

Comments
 (0)