Skip to content

feat: move from ssr to spa #4

feat: move from ssr to spa

feat: move from ssr to spa #4

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v1
with:
node-version: 20.x
- run: npm ci
working-directory: web-app
- run: npm run build
working-directory: web-app
- uses: actions/upload-pages-artifact
with:
path: web-app/build/client
- uses: actions/deploy-pages