Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/editor_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Editor build

on:
push:
branches: [ main ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install lib's deps
working-directory: ./web/lib
run: npm ci

- name: Build lib
working-directory: ./web/lib
run: npm run build

- name: Install editor deps
working-directory: ./editor
run: npm install

- name: Build editor
working-directory: ./editor
run: npm run build
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading