Skip to content

Display visitor stats on stats page #7

Display visitor stats on stats page

Display visitor stats on stats page #7

Workflow file for this run

name: 'build client'
on: # rebuild any PRs and any branch changes for the client directory
pull_request:
push:
paths:
- client-pure/**
jobs:
build-client:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "19"
cache: pnpm
cache-dependency-path: 'client-pure/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install
working-directory: client-pure
- name: Build client with Vite
run: pnpm run build
working-directory: client-pure