fix(ci): point CLI tests to cli.mjs output and drop removed buildx install input

This commit is contained in:
2026-09-06 23:03:38 +02:00
parent be617383f4
commit 77b7ae1de6
3 changed files with 1 additions and 6 deletions
-2
View File
@@ -33,8 +33,6 @@ jobs:
- uses: actions/checkout@v7
- uses: docker/setup-qemu-action@v4
- uses: docker/setup-buildx-action@v4
with:
install: true
- name: Docker Labels
id: meta
uses: docker/metadata-action@v6
-3
View File
@@ -22,9 +22,6 @@ jobs:
# Docker
- uses: docker/setup-qemu-action@v4
- uses: docker/setup-buildx-action@v4
with:
install: true
- name: Prepare
run: |
pnpm install
+1 -1
View File
@@ -100,7 +100,7 @@ export async function checkLinkDoesNotExist(page: Page, link: string) {
}
export async function CLI(...args: string[]) {
return await exec('./packages/cli/dist/cli.js', args, {
return await exec('./packages/cli/dist/cli.mjs', args, {
env: {
...process.env,
CRYPTGEON_SERVER: 'http://localhost:3000',