@tscircuit/eval 0.0.348 → 0.0.349

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/eval",
3
3
  "main": "dist/lib/index.js",
4
- "version": "0.0.348",
4
+ "version": "0.0.349",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "bun run build:lib && bun run build:webworker && bun run build:blob-url && bun run build:runner && bun run build:worker-wrapper",
@@ -1,109 +0,0 @@
1
- name: Auto-merge tscircuitbot PRs
2
-
3
- on:
4
- pull_request_target:
5
- types: [opened, synchronize, reopened]
6
- check_suite:
7
- types: [completed]
8
-
9
- jobs:
10
- debug:
11
- runs-on: ubuntu-latest
12
- steps:
13
- - name: Debug event context
14
- run: |
15
- echo "Event name: ${{ github.event_name }}"
16
- echo "PR number: ${{ github.event.pull_request.number }}"
17
- echo "PR title: ${{ github.event.pull_request.title }}"
18
- echo "PR user: ${{ github.event.pull_request.user.login }}"
19
- echo "PR head sha: ${{ github.event.pull_request.head.sha }}"
20
- echo "Check suite conclusion: ${{ github.event.check_suite.conclusion }}"
21
- echo "Repository: ${{ github.repository }}"
22
- echo "Actor: ${{ github.actor }}"
23
-
24
- auto-merge:
25
- runs-on: ubuntu-latest
26
- needs: debug
27
- if: >
28
- github.event.pull_request &&
29
- (github.event.pull_request.user.login == 'tscircuitbot' ||
30
- github.actor == 'tscircuitbot') &&
31
- contains(github.event.pull_request.title, 'chore: update @tscircuit/core')
32
-
33
- steps:
34
- - name: Wait for test (circuit-runner)
35
- uses: fountainhead/action-wait-for-check@v1.2.0
36
- with:
37
- token: ${{ secrets.GITHUB_TOKEN }}
38
- checkName: test (circuit-runner)
39
- ref: ${{ github.event.pull_request.head.sha }}
40
-
41
- - name: Wait for test (custom-component-with-fsmap)
42
- uses: fountainhead/action-wait-for-check@v1.2.0
43
- with:
44
- token: ${{ secrets.GITHUB_TOKEN }}
45
- checkName: test (custom-component-with-fsmap)
46
- ref: ${{ github.event.pull_request.head.sha }}
47
-
48
- - name: Wait for test (examples)
49
- uses: fountainhead/action-wait-for-check@v1.2.0
50
- with:
51
- token: ${{ secrets.GITHUB_TOKEN }}
52
- checkName: test (examples)
53
- ref: ${{ github.event.pull_request.head.sha }}
54
-
55
- - name: Wait for test (features)
56
- uses: fountainhead/action-wait-for-check@v1.2.0
57
- with:
58
- token: ${{ secrets.GITHUB_TOKEN }}
59
- checkName: test (features)
60
- ref: ${{ github.event.pull_request.head.sha }}
61
-
62
- - name: Wait for test (node-resolution)
63
- uses: fountainhead/action-wait-for-check@v1.2.0
64
- with:
65
- token: ${{ secrets.GITHUB_TOKEN }}
66
- checkName: test (node-resolution)
67
- ref: ${{ github.event.pull_request.head.sha }}
68
-
69
- - name: Wait for test (repros)
70
- uses: fountainhead/action-wait-for-check@v1.2.0
71
- with:
72
- token: ${{ secrets.GITHUB_TOKEN }}
73
- checkName: test (repros)
74
- ref: ${{ github.event.pull_request.head.sha }}
75
-
76
- - name: Wait for test (util-fns)
77
- uses: fountainhead/action-wait-for-check@v1.2.0
78
- with:
79
- token: ${{ secrets.GITHUB_TOKEN }}
80
- checkName: test (util-fns)
81
- ref: ${{ github.event.pull_request.head.sha }}
82
-
83
- - name: Wait for type check completion
84
- uses: fountainhead/action-wait-for-check@v1.2.0
85
- with:
86
- token: ${{ secrets.GITHUB_TOKEN }}
87
- checkName: type-check
88
- ref: ${{ github.event.pull_request.head.sha }}
89
-
90
- - name: Wait for Playwright tests
91
- uses: fountainhead/action-wait-for-check@v1.2.0
92
- with:
93
- token: ${{ secrets.GITHUB_TOKEN }}
94
- checkName: test
95
- ref: ${{ github.event.pull_request.head.sha }}
96
-
97
- - name: Wait for format check completion
98
- uses: fountainhead/action-wait-for-check@v1.2.0
99
- with:
100
- token: ${{ secrets.GITHUB_TOKEN }}
101
- checkName: format-check
102
- ref: ${{ github.event.pull_request.head.sha }}
103
-
104
- - name: Enable auto-merge
105
- uses: peter-evans/enable-pull-request-automerge@v3
106
- with:
107
- token: ${{ secrets.TSCIRCUIT_BOT_GITHUB_TOKEN }}
108
- pull-request-number: ${{ github.event.pull_request.number }}
109
- merge-method: squash