From fd7810f839cb920a8cd660bf0dc1776c6ddb2767 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Fri, 11 Feb 2022 21:18:53 -0500 Subject: [PATCH] Generate Prisma client before linting Otherwise since dependencies are cached schema changes won't be reflected. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1166aa..2a04494 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,8 @@ jobs: ${{ runner.OS }}- - name: Install dependencies run: yarn install + - name: Generate Prisma client + run: yarn prisma generate - name: Run lint run: yarn lint - name: Build