diff options
| author | Max Isom <[email protected]> | 2022-02-11 21:18:53 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2022-02-11 21:18:53 -0500 |
| commit | fd7810f839cb920a8cd660bf0dc1776c6ddb2767 (patch) | |
| tree | 62e96d7f322a0456bfd4d953c29bd2477064d4bf | |
| parent | da3219d3b953b98d22d477ab8f71bdf0f8fccca3 (diff) | |
| download | muse-fd7810f839cb920a8cd660bf0dc1776c6ddb2767.tar.xz muse-fd7810f839cb920a8cd660bf0dc1776c6ddb2767.zip | |
Generate Prisma client before linting
Otherwise since dependencies are cached schema changes won't be reflected.
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
