Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ jobs:
sudo corepack enable
pnpm install
pnpm --filter=@oxc-node/core build --target x86_64-unknown-freebsd
pnpm --filter=@oxc-node/core export-oxc-runtime
rm -rf node_modules
rm -rf target
- name: Upload artifact
Expand Down Expand Up @@ -278,6 +279,8 @@ jobs:
- name: List packages
run: ls -R .
shell: bash
- name: Copy OXC Runtime
run: pnpm --filter=@oxc-node/core export-oxc-runtime
- name: Test bindings
run: pnpm test
env:
Expand Down Expand Up @@ -355,6 +358,8 @@ jobs:
- name: List packages
run: ls -R .
shell: bash
- name: Copy OXC Runtime
run: pnpm --filter=@oxc-node/core export-oxc-runtime
- name: Set up QEMU
if: ${{ !contains(matrix.target, 'aarch64') }}
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
Expand Down Expand Up @@ -400,6 +405,8 @@ jobs:
- name: List packages
run: ls -R .
shell: bash
- name: Copy OXC Runtime
run: pnpm --filter=@oxc-node/core export-oxc-runtime
- name: Test bindings
run: pnpm test
env:
Expand Down Expand Up @@ -431,10 +438,11 @@ jobs:
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
path: artifacts
- name: create npm dirs
- name: Prepare publish
run: |
pnpm napi create-npm-dirs --package-json-path packages/core/package.json
pnpm napi artifacts --package-json-path packages/core/package.json --build-output-dir packages/core
pnpm --filter=@oxc-node/core export-oxc-runtime
- name: List packages
run: ls -R ./npm
shell: bash
Expand Down
1 change: 1 addition & 0 deletions packages/core/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src
Loading
Loading