commit from newbranch3 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Succeeds on PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '22' | |
- name: Install pnpm Globally | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Generaate Prisma Client | |
run: npm install | |
- name: Run Build | |
run: pnpm run build |