Skip to content

feat: Add tutorials and some changes for Plugins, Langs and Themes in production #590

feat: Add tutorials and some changes for Plugins, Langs and Themes in production

feat: Add tutorials and some changes for Plugins, Langs and Themes in production #590

Workflow file for this run

name: Tests & Builds
on:
pull_request_target:
branches: "*"
types:
- opened
- edited
- synchronize
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install
- name: Run config init
run: pnpm config:init
- name: Check formatting
run: pnpm lint
- name: Build backend
run: pnpm backend:build
- name: Build frontend
run: pnpm frontend:build