Skip to content

Corrected Lint Errors #1

Corrected Lint Errors

Corrected Lint Errors #1

Workflow file for this run

name: Build Succeeds on PR
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Generate Prisma Client
run: npm run db:generate
- name: Build
run: npm run build