-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): add keycloakify dev tests and bump @types/react from 18.3.…
…1 to 18.3.2 in /keycloak/keycloakify in the minorandpatch group (#1871) * chore(deps-dev): bump @types/react Bumps the minorandpatch group in /keycloak/keycloakify with 1 update: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). Updates `@types/react` from 18.3.1 to 18.3.2 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) --- updated-dependencies: - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minorandpatch ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Cornelius Roemer <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
4b6a2a9
commit 1bde240
Showing
3 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: keycloakify-test | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
paths: | ||
- "keycloak/keycloakify/**" | ||
- ".github/workflows/keycloakify-test.yml" | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ci-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }}-keycloak-test | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
keycloakify-test: | ||
name: Test keycloakify local builds | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
defaults: | ||
run: | ||
working-directory: keycloak/keycloakify | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: keycloak/keycloakify/.nvmrc | ||
- run: | | ||
corepack enable && | ||
corepack install # use the in-repo yarn version | ||
- name: Setup Yarn in Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: keycloak/keycloakify/.nvmrc | ||
cache-dependency-path: keycloak/keycloakify/yarn.lock | ||
cache: "yarn" # uses the system node, which was updated prior. | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Build | ||
run: yarn build | ||
- name: Build storybook | ||
run: yarn build-storybook | ||
- name: Build keycloak theme | ||
run: yarn build-keycloak-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters