Skip to content

chore: update packages + migrate to prisma 5 #426

chore: update packages + migrate to prisma 5

chore: update packages + migrate to prisma 5 #426

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on pull request events
pull_request:
branches: ["*"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
pr-lint:
name: Run PR Lint
runs-on: ubuntu-latest
steps:
- name: semantic-pull-request
uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pretter-lint-check:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm install prettier
- run: npm run format:check