Add job for UI Shared to JS workflow (#17538)

This commit is contained in:
Jon Koops 2023-03-09 14:52:37 +01:00 committed by GitHub
parent d7388c479b
commit ceef7cfa8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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