@tscircuit/cli 0.0.226 → 0.0.227
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/windows-tests.yml +32 -0
- package/dist/cli.js +5 -5
- package/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Windows Tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
tests:
|
|
13
|
+
runs-on: windows-latest
|
|
14
|
+
timeout-minutes: 10
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout code
|
|
18
|
+
uses: actions/checkout@v2
|
|
19
|
+
|
|
20
|
+
- name: Setup bun
|
|
21
|
+
uses: oven-sh/setup-bun@v1
|
|
22
|
+
with:
|
|
23
|
+
bun-version: latest
|
|
24
|
+
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: bun install
|
|
27
|
+
|
|
28
|
+
- name: Build
|
|
29
|
+
run: bun run build
|
|
30
|
+
|
|
31
|
+
- name: Run tests
|
|
32
|
+
run: bun test --timeout 15000
|