Skip to content

Commit

Permalink
fix: ci debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ClarkXia committed Nov 1, 2023
1 parent e571ab1 commit 16bf6cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ jobs:
sparse-checkout: crates
ref: main

- name: List file
run: node scripts/clean.mjs

- name: Install Rust Toolchain
uses: ./.github/actions/rustup
with:
Expand Down
9 changes: 9 additions & 0 deletions scripts/clean.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import fse from 'fs-extra';

const DEST = 'crates/.rspack_crates/';
const crates = fse.readdirSync(DEST);

crates.forEach((crate) => {
// Ingore crates which is temporary and use for binding.
console.log('crates', crate);
});

0 comments on commit 16bf6cd

Please sign in to comment.