Skip to content

TECH-1172 use turbo

TECH-1172 use turbo #3

Workflow file for this run

name: NextJS Build and Dev
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies'
shell: bash
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Start dev server
run: >
yarn dev & npx wait-on
http://localhost:3000
http://localhost:3006
http://localhost:3007
http://localhost:3008
http://localhost:3009
http://localhost:3010
timeout-minutes: 3