Adjust column widths of events #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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 |