Skip to content

Bump @solidjs/router from 0.12.5 to 0.15.3 in /client #16

Bump @solidjs/router from 0.12.5 to 0.15.3 in /client

Bump @solidjs/router from 0.12.5 to 0.15.3 in /client #16

Workflow file for this run

name: Branch Build
on:
push:
branches-ignore:
- main
permissions:
contents: write
env:
VITE_BOT_SERVER_URL: ${{ vars.VITE_BOT_SERVER_URL }}
jobs:
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: |
cd client
pnpm install
- name: Build client
run: |
cd client
pnpm build
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: client-build
path: client/dist