-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (34 loc) · 919 Bytes
/
windows-ci.yml
File metadata and controls
45 lines (34 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Windows CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize, reopened]
jobs:
run-on-windows-2025:
runs-on: windows-2025
strategy:
matrix:
node-version: [20.x, lts/*]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v4
name: Install pnpm
id: pnpm-install
with:
run_install: false
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: pnpm install
- run: pnpm -v
- run: dir
- run: pnpm start:tsdk
- run: pnpm --filter=web typecheck && pnpm --filter=web build
- run: pnpm start:bun
- run: pnpm --filter fe-sdk-demo-docs build
- run: dir