Skip to content

Update @prisma/client 7.7.0 → 7.8.0 (minor) #2167

Update @prisma/client 7.7.0 → 7.8.0 (minor)

Update @prisma/client 7.7.0 → 7.8.0 (minor) #2167

name: Continuous Integration
on:
push:
branches:
- sapphire-rewrite
pull_request:
jobs:
Building:
name: Compile source code
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout Project
uses: actions/checkout@v6
- name: Use Node.js v24
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
registry-url: https://registry.yarnpkg.com/
# - name: Restore CI Cache
# uses: actions/cache@v1
# with:
# path: node_modules
# key: ${{ runner.os }}-14-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn --ignore-scripts --frozen-lockfile
- name: Generate Prisma
run: yarn prisma generate
- name: Build code
run: yarn build