Skip to content

Commit

Permalink
chore: update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed May 11, 2024
1 parent d68cbf9 commit dea8811
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,36 +83,36 @@ jobs:
run: nr build

- name: loader:auto
run: node ./scripts/fixtures/index.mjs
continue-on-error: true
run: node ./fixtures/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: auto

- name: loader:jiti
run: node ./scripts/fixtures/index.mjs
continue-on-error: true
run: node ./fixtures/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: jiti

- name: loader:tsx
run: node ./scripts/fixtures/index.mjs
continue-on-error: true
run: node ./fixtures/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: tsx

- name: loader:bundle-require
run: node ./scripts/fixtures/index.mjs
continue-on-error: true
run: node ./fixtures/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: bundle-require

- name: loader:native with tsx cli
run: npx tsx fixtures/basic/index.mjs
continue-on-error: true
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: native
Expand All @@ -122,16 +122,16 @@ jobs:
deno-version: vx.x.x

- name: loader:native with deno
run: deno run --unstable --allow-read --allow-write --allow-net --allow-env --allow-run fixtures/basic/index.mjs
continue-on-error: true
run: deno run --unstable --allow-read --allow-env --allow-run ./fixtures/basic/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: native

- uses: oven-sh/setup-bun@v1
- name: loader:native with bun
run: bun run fixtures/basic/index.mjs
continue-on-error: true
run: bun run ./fixtures/basic/index.mjs
if: always()
env:
DEBUG: importx
IMPORTX_LOADER: native

0 comments on commit dea8811

Please sign in to comment.