chore(deps): bump the github-action-dependencies group across 1 directory with 7 updates #90
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: Public API change Validation | |
| on: [pull_request] | |
| jobs: | |
| validate-api: | |
| name: Validate public API has not changed | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Build TypeScript declarations | |
| run: npm run prepare | |
| - name: Validate API | |
| run: npx api-extractor run |