Add job for Account UI to JS workflow (#17534)
This commit is contained in:
parent
2d22e0ea66
commit
7db88f0d6a
1 changed files with 18 additions and 0 deletions
18
.github/workflows/js-ci.yml
vendored
18
.github/workflows/js-ci.yml
vendored
|
@ -50,6 +50,23 @@ jobs:
|
|||
- run: npm run lint --workspace=${{ env.WORKSPACE }}
|
||||
- run: npm run build --workspace=${{ env.WORKSPACE }}
|
||||
|
||||
account-ui:
|
||||
name: Account UI
|
||||
needs: conditional
|
||||
if: needs.conditional.outputs.js-ci == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
WORKSPACE: account-ui
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: ./.github/actions/npm-setup
|
||||
with:
|
||||
working-directory: js
|
||||
|
||||
- run: npm run lint --workspace=${{ env.WORKSPACE }}
|
||||
- run: npm run build --workspace=${{ env.WORKSPACE }}
|
||||
|
||||
admin-ui:
|
||||
name: Admin UI
|
||||
needs: conditional
|
||||
|
@ -74,6 +91,7 @@ jobs:
|
|||
name: Set check conclusion
|
||||
needs:
|
||||
- admin-client
|
||||
- account-ui
|
||||
- admin-ui
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
|
|
Loading…
Reference in a new issue