Skip to content

build(deps-dev): bump the nx-group group across 1 directory with 5 up… #32

build(deps-dev): bump the nx-group group across 1 directory with 5 up…

build(deps-dev): bump the nx-group group across 1 directory with 5 up… #32

Workflow file for this run

name: Build Client App
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, latest]
defaults:
run:
working-directory: ./apps/client
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
env:
VITE_GROWTH_BOOK_KEY: ${{ secrets.VITE_GROWTH_BOOK_KEY }}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: client-build_${{ matrix.node-version }}
path: apps/client/dist/