Select session page (migrated changes) #69
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 Test | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js version | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "18.x" | |
- name: yarn install | |
run: | | |
yarn install | |
- name: prisma generate | |
run: | | |
npx prisma generate | |
- name: Build Next app | |
run: | | |
yarn build |