Skip to content

Add build step and SSR command to Dockerfile #12

Add build step and SSR command to Dockerfile

Add build step and SSR command to Dockerfile #12

Workflow file for this run

name: Client CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
working-directory: client
run: npm install
- name: Build client
working-directory: client
run: npm run build