Skip to content

Commit

Permalink
GH-41920: [CI][JS] Add missing build directory argument (#41921)
Browse files Browse the repository at this point in the history
### 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]>
  • Loading branch information
kou authored Jun 1, 2024
1 parent 255dbf9 commit 0d9d699
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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

0 comments on commit 0d9d699

Please sign in to comment.