Skip to content

wip

wip #52

Workflow file for this run

name: build-apps
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.10.0]
os: [ubuntu-latest]
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup Node env
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm
- name: Build @core/lib
run: pnpm lib:build
- name: Build express-server
run: pnpm workspace express-server build
- name: Build nestjs-server
run: pnpm workspace nestjs-server build
- name: Build react-client
run: pnpm workspace react-client build
- name: Build next-client
run: pnpm workspace next-client build