Skip to content

testing workflow

testing workflow #2

Workflow file for this run

name: Build on PR
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install Dependencies
run: npm install
- name: Generate Prisma
run: npm run db:generate
- name: Run Build
run: npm run build