Skip to content

chore(project): fix github action bug #2

chore(project): fix github action bug

chore(project): fix github action bug #2

Workflow file for this run

name: Check Project
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Install dependencies 📦
run: pnpm i
- name: Check
run: pnpm ts-check
- name: Build Editor 🔧
run: pnpm run build
working-directory: packages/editor
- name: Build App 🔧
run: pnpm run build
working-directory: packages/app