This commit fixes the CI/CD website release process which was failing due to an incorrect working directory setting. The `working-directory` is now correctly set within the action workflow, ensuring the `npm run install-deps` command runs in project root directory where `package.json` exists.
13 lines
259 B
YAML
13 lines
259 B
YAML
inputs:
|
|
working-directory:
|
|
required: false
|
|
default: '.'
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
-
|
|
name: Run `npm ci` with retries
|
|
shell: bash
|
|
run: npm run install-deps -- --ci
|
|
working-directory: ${{ inputs.working-directory }}
|