More fixes related to latest changes #11
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: Cookbook TS verification | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| pull_request: | |
| jobs: | |
| cookbook_ts_test: | |
| name: Cookbook TypeScript recipe test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.19.0 | |
| - name: Gate cookbook dependencies against high-severity advisories | |
| run: node ./testing/cookbook-ts/audit-project.mjs | |
| - name: Test extractor, type-check snippets, and build recipe projects | |
| run: ./testing/cookbook-ts-ci.sh |