Feat/spaces: Websockets integration #108
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 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: "20" | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Install Dependencies | |
working-directory: next-app | |
run: pnpm install | |
- name: Generate Prisma client | |
working-directory: next-app | |
run: pnpm run postinstall | |
- name: Run Build | |
working-directory: next-app | |
run: pnpm run build |