fix(deps): update all non-major keycloakify dependencies #2393
This file contains hidden or 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
| name: Linting | |
| on: [pull_request] | |
| jobs: | |
| checkstyle: | |
| name: Linting Server (Java) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dbelyaev/action-checkstyle@master | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| checkstyle_config: ./server/checkstyle.xml | |
| checkstyle_version: 10.21.0 | |
| fail_on_error: true | |
| lint-client: | |
| name: Linting Client (Angular) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install modules | |
| working-directory: ./client | |
| run: yarn | |
| - name: Run ESLint | |
| working-directory: ./client | |
| run: npx eslint --max-warnings 0 . | |
| lint-keycloakify: | |
| name: Linting Keycloakify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install modules | |
| working-directory: ./keycloakify | |
| run: yarn | |
| - name: Run ESLint | |
| working-directory: ./keycloakify | |
| run: npx eslint --max-warnings 0 . |