This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 0d9d699250 GH-41920: [CI][JS] Add missing build directory argument
(#41921)
0d9d699250 is described below
commit 0d9d699250ad98cdcc5c99735e1379b1e79bc195
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sun Jun 2 06:51:56 2024 +0900
GH-41920: [CI][JS] Add missing build directory argument (#41921)
### Rationale for this change
This is a follow-up of GH-41455.
### What changes are included in this PR?
Add missing build directory argument.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* GitHub Issue: #41920
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
.github/workflows/js.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml
index c9b7d7b742..e03d0c2dad 100644
--- a/.github/workflows/js.yml
+++ b/.github/workflows/js.yml
@@ -106,10 +106,10 @@ jobs:
node-version: ${{ matrix.node }}
- name: Build
shell: bash
- run: ci/scripts/js_build.sh $(pwd)
+ run: ci/scripts/js_build.sh $(pwd) build
- name: Test
shell: bash
- run: ci/scripts/js_test.sh $(pwd)
+ run: ci/scripts/js_test.sh $(pwd) build
windows:
name: AMD64 Windows NodeJS ${{ matrix.node }}
@@ -136,7 +136,7 @@ jobs:
node-version: ${{ matrix.node }}
- name: Build
shell: bash
- run: ci/scripts/js_build.sh $(pwd)
+ run: ci/scripts/js_build.sh $(pwd) build
- name: Test
shell: bash
- run: ci/scripts/js_test.sh $(pwd)
+ run: ci/scripts/js_test.sh $(pwd) build