File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ inputs:
3838 required : false
3939 default : ' '
4040
41+ working-directory :
42+ description : Specifies the working directory where commands are run.
43+ required : false
44+ default : ' '
45+
4146runs :
4247 using : ' composite'
4348 steps :
4752 sudo apt-get update
4853 sudo apt-get install --yes ${{ inputs.apt-packages }}
4954 shell : bash
55+ working-directory : ${{ inputs.working-directory }}
5056
5157 - name : Tune PostgreSQL for test performance
5258 if : ${{ inputs.pg-service != '' && inputs.optimize-postgres == 'yes' }}
6975
7076 echo "Done configuring PostgreSQL for faster tests."
7177 shell : bash
78+ working-directory : ${{ inputs.working-directory }}
7279
7380 - uses : actions/setup-python@v4
7481 with :
8289 --use-pep517 \
8390 --use-feature=no-binary-enable-wheel-cache
8491 shell : bash
92+ working-directory : ${{ inputs.working-directory }}
8593
8694 # TODO: enable cache
8795 - uses : actions/setup-node@v3
95103 npm ci ${{ inputs.npm-ci-flags }}
96104 npm run build
97105 shell : bash
106+ working-directory : ${{ inputs.working-directory }}
98107
You can’t perform that action at this time.
0 commit comments