fix(sdk-node)!: fixes for and fail-fast on Resource creation from config file #15841
Workflow file for this run
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: Ensure API Peer Dependency | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| peer-api-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 | |
| with: | |
| cache: 'npm' | |
| cache-dependency-path: | | |
| package-lock.json | |
| node-version: '24' | |
| - name: Install script dependencies | |
| run: npm ci --ignore-scripts | |
| - name: Check API dependency semantics | |
| run: npx nx run-many -t peer-api-check |