fix(deps): update all non-major keycloakify dependencies #3781
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] | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| checkstyle: | |
| name: Linting Server (Java) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: dbelyaev/action-checkstyle@v3 | |
| 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@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11.8.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: client/.nvmrc | |
| cache: 'pnpm' | |
| cache-dependency-path: client/pnpm-lock.yaml | |
| - name: Install modules | |
| working-directory: ./client | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ESLint | |
| working-directory: ./client | |
| run: pnpm exec eslint --max-warnings 0 . | |
| lint-keycloakify: | |
| name: Linting Keycloakify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11.8.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: client/.nvmrc | |
| cache: 'pnpm' | |
| cache-dependency-path: keycloakify/pnpm-lock.yaml | |
| - name: Install modules | |
| working-directory: ./keycloakify | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ESLint | |
| working-directory: ./keycloakify | |
| run: pnpm exec eslint --max-warnings 0 . |