chore(deps): update dependency js-yaml to v4.1.1 [security] #6293
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: AreTheTypesWrong | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| jobs: | |
| arethetypeswrong: | |
| name: Are the types wrong | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ">=23.6.0" | |
| - name: Install dependencies (with cache) | |
| uses: bahmutov/npm-install@v1 | |
| - name: Run build | |
| run: npm run build | |
| - name: Run AreTheTypesWrong | |
| id: attw | |
| run: ./node_modules/.bin/attw --format ascii --pack dist > $GITHUB_STEP_SUMMARY |