Skip to content

Commit 6932f2f

Browse files
authored
chore: remove remaining tsx refs (#455)
1 parent e320e1e commit 6932f2f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ecosystem-ci-from-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
- run: pnpm --version
120120
- run: pnpm i --frozen-lockfile
121121
- run: >-
122-
pnpm tsx ecosystem-ci.ts
122+
node ecosystem-ci.ts
123123
--branch "$BRANCH_NAME"
124124
--repo "$REPO"
125125
$(if [ -n "$COMMIT" ] ; then echo "--commit $COMMIT"; fi)
@@ -193,7 +193,7 @@ jobs:
193193
- run: pnpm --version
194194
- run: pnpm i --frozen-lockfile
195195
- run: >-
196-
pnpm tsx ecosystem-ci.ts
196+
node ecosystem-ci.ts
197197
--branch "$BRANCH_NAME"
198198
--repo "$REPO"
199199
$(if [ -n "$COMMIT" ] ; then echo "--commit $COMMIT"; fi)

.github/workflows/ecosystem-ci-selected.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- run: pnpm --version
102102
- run: pnpm i --frozen-lockfile
103103
- run: >-
104-
pnpm tsx ecosystem-ci.ts
104+
node ecosystem-ci.ts
105105
"--$REF_TYPE" "$REF"
106106
--repo "$REPO"
107107
${ROLLDOWN_REF:+--rolldown-ref "$ROLLDOWN_REF"}

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- run: pnpm --version
9999
- run: pnpm i --frozen-lockfile
100100
- run: >-
101-
pnpm tsx ecosystem-ci.ts
101+
node ecosystem-ci.ts
102102
"--$REF_TYPE" "$REF"
103103
--repo "$REPO"
104104
${ROLLDOWN_REF:+--rolldown-ref "$ROLLDOWN_REF"}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Workflows are scheduled to run automatically every Monday, Wednesday and Friday
2121
- run `pnpm i`
2222
- run `pnpm test` to run all suites
2323
- or `pnpm test <suitename>` to select a suite
24-
- or `tsx ecosystem-ci.ts`
2524

2625
You can pass `--tag v2.8.0-beta.1`, `--branch somebranch` or `--commit abcd1234` option to select a specific vite version to build.
2726
If you pass `--release 2.7.13`, vite build will be skipped and vite is fetched from the registry instead

0 commit comments

Comments
 (0)