review updates
This commit is contained in:
parent
075c8eac40
commit
05922d9c5a
|
@ -16,6 +16,9 @@ runs:
|
||||||
node-version: 16.x
|
node-version: 16.x
|
||||||
- run: |
|
- run: |
|
||||||
yarn
|
yarn
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{ inputs.working-directory }}
|
||||||
|
- run: |
|
||||||
yarn prettier --check .
|
yarn prettier --check .
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: ${{ inputs.working-directory }}
|
working-directory: ${{ inputs.working-directory }}
|
||||||
|
|
|
@ -82,12 +82,12 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
# Check if the changed status of py is true
|
# Check if the changed status of py is true
|
||||||
updates: steps.changes.outputs.py == 'true'
|
updates: steps.filter.outputs.py == 'true'
|
||||||
steps:
|
steps:
|
||||||
# Use paths-filter to determine which paths have changes
|
# Use paths-filter to determine which paths have changes
|
||||||
# https://github.com/dorny/paths-filter
|
# https://github.com/dorny/paths-filter
|
||||||
- uses: dorny/paths-filter@v2
|
- uses: dorny/paths-filter@v2
|
||||||
id: changes
|
id: filter
|
||||||
with:
|
with:
|
||||||
filters: |
|
filters: |
|
||||||
py: "**.py"
|
py: "**.py"
|
||||||
|
|
Reference in New Issue