Add job for UI Shared to JS workflow (#17538)
This commit is contained in:
parent
d7388c479b
commit
ceef7cfa8a
1 changed files with 18 additions and 0 deletions
18
.github/workflows/js-ci.yml
vendored
18
.github/workflows/js-ci.yml
vendored
|
@ -83,6 +83,23 @@ jobs:
|
|||
- run: npm run lint --workspace=${{ env.WORKSPACE }}
|
||||
- run: npm run build --workspace=${{ env.WORKSPACE }}
|
||||
|
||||
ui-shared:
|
||||
name: UI Shared
|
||||
needs: conditional
|
||||
if: needs.conditional.outputs.js-ci == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
WORKSPACE: ui-shared
|
||||
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 }}
|
||||
|
||||
account-ui:
|
||||
name: Account UI
|
||||
needs: conditional
|
||||
|
@ -126,6 +143,7 @@ jobs:
|
|||
- admin-client
|
||||
- keycloak-js
|
||||
- keycloak-masthead
|
||||
- ui-shared
|
||||
- account-ui
|
||||
- admin-ui
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in a new issue