Skip to content

Commit

Permalink
chore(ci): add keycloakify dev tests and bump @types/react from 18.3.…
Browse files Browse the repository at this point in the history
…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
dependabot[bot] and corneliusroemer authored May 11, 2024
1 parent 4b6a2a9 commit 1bde240
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 3 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/keycloakify-test.yml
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
2 changes: 1 addition & 1 deletion keycloak/keycloakify/package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@storybook/react": "^8.0.2",
"@storybook/react-vite": "^8.0.2",
"@storybook/test": "^8.0.2",
"@types/react": "^18.3.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
Expand Down
14 changes: 12 additions & 2 deletions keycloak/keycloakify/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3356,7 +3356,7 @@ __metadata:
languageName: node
linkType: hard

"@types/react@npm:*, @types/react@npm:^16.8.0 || ^17.0.0 || ^18.0.0, @types/react@npm:^18.3.1":
"@types/react@npm:*, @types/react@npm:^16.8.0 || ^17.0.0 || ^18.0.0":
version: 18.3.1
resolution: "@types/react@npm:18.3.1"
dependencies:
Expand All @@ -3366,6 +3366,16 @@ __metadata:
languageName: node
linkType: hard

"@types/react@npm:^18.3.2":
version: 18.3.2
resolution: "@types/react@npm:18.3.2"
dependencies:
"@types/prop-types": "npm:*"
csstype: "npm:^3.0.2"
checksum: 10c0/9fb2f1fcf7e889ee4ea7c3c5978df595c66e770e5fd3a245dbdd2589b9b911524c11dab25a6275d8af4e336e4cb5fa850d447884b84c335a187a338c89df99ba
languageName: node
linkType: hard

"@types/resolve@npm:^1.20.2":
version: 1.20.6
resolution: "@types/resolve@npm:1.20.6"
Expand Down Expand Up @@ -7150,7 +7160,7 @@ __metadata:
"@storybook/react": "npm:^8.0.2"
"@storybook/react-vite": "npm:^8.0.2"
"@storybook/test": "npm:^8.0.2"
"@types/react": "npm:^18.3.1"
"@types/react": "npm:^18.3.2"
"@types/react-dom": "npm:^18.3.0"
"@typescript-eslint/eslint-plugin": "npm:^6.14.0"
"@typescript-eslint/parser": "npm:^6.14.0"
Expand Down

0 comments on commit 1bde240

Please sign in to comment.