Fix: Create a request cache to ensure that each credential is only fetched once #3190
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: Check Runtime Schemas | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-runtime-schemas: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| - run: npm ci | |
| - run: npm run build:node | |
| - run: npm run build:schemas --workspace=@nmshd/runtime | |
| - name: Check git diff | |
| run: bash .ci/checkGitDiff.sh |