Skip to content

Changes by coderabbit #1

Changes by coderabbit

Changes by coderabbit #1

Workflow file for this run

name: Run build for website and admin
on:
push:
jobs:
admin-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: |
cd admin
npm install
npm run build
website-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- run: |
cd website
npm install
npm run build