diff --git a/.github/workflows/npm_build.yaml b/.github/workflows/npm_build.yaml index f864dae..a537a5c 100644 --- a/.github/workflows/npm_build.yaml +++ b/.github/workflows/npm_build.yaml @@ -17,6 +17,11 @@ on: description: 'npm build script' required: true type: string + ci_args: + default: '' + description: 'npm ci args' + required: false + type: string output: description: 'Output directory name' required: true @@ -36,7 +41,7 @@ jobs: with: node-version: ${{ inputs.node_version }} cache: 'npm' - - run: npm ci + - run: npm ci ${{ inputs.ci_args }} - run: npm run ${{ inputs.script }} - name: Write commit_id.txt