Skip to content

Merge branch '1-bug-fixes-and-improvements-0918' of github.com:myshel… #35

Merge branch '1-bug-fixes-and-improvements-0918' of github.com:myshel…

Merge branch '1-bug-fixes-and-improvements-0918' of github.com:myshel… #35

Workflow file for this run

name: Build Web App
on:
push:
paths:
- "web/apps/web/**"
- "web/packages/**"
- ".github/**"
pull_request:
paths:
- "web/apps/web/**"
- "web/packages/**"
- ".github/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 9
run_install: false
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "web/pnpm-lock.yaml"
- working-directory: "./web"
run: pnpm install
- working-directory: "./web"
run: pnpm turbo run build --filter=web
- uses: actions/upload-artifact@v3
with:
name: web-build
path: web/apps/web/dist