Skip to content
Open
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
36 changes: 36 additions & 0 deletions .github/workflows/windows-web-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Windows Build

on:
pull_request:
push:

jobs:
windows-build:
runs-on: windows-latest

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18

# --- Build web_core first ---
- name: Install web_core deps
working-directory: renderers/web_core
run: npm install

- name: Build web_core
working-directory: renderers/web_core
run: npm run build

# --- Then build lit ---
- name: Install lit deps
working-directory: renderers/lit
run: npm install

- name: Build lit
working-directory: renderers/lit
run: npm run build
Loading