Skip to content

docs: add development approach and detailed implementation plan to Ja… #5

docs: add development approach and detailed implementation plan to Ja…

docs: add development approach and detailed implementation plan to Ja… #5

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install pnpm
run: npm install -g pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test
- run: pnpm build
- uses: actions/upload-pages-artifact@v3
with:
path: ./client/dist
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3