Skip to content
Open
Changes from 1 commit
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
Next Next commit
issue with windows build lerna
  • Loading branch information
BSd3v committed Sep 2, 2025
commit 677e4c14e7541fa478df36fe96c6128137325ce9
37 changes: 37 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,43 @@ jobs:
path: packages/ # Upload the contents of the dist directory
retention-days: 1 # Keep artifact for 1 day (adjust as needed)

build-windows:
name: Build Dash Package - Windows
runs-on: windows-latest
timeout-minutes: 30
outputs:
artifact_name: dash-packages
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Node.js for frontend build
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm

- name: Install NPM dependencies
run: npm ci

- name: Set up Python for build
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: pip

- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "setuptools<80.0.0"
python -m pip install build wheel
python -m pip install -e .[dev,ci]

- name: Build Dash
run: npm run first-build

test-typing:
name: Typing Tests
runs-on: ubuntu-latest
Expand Down
Loading