deps: bump fs-extra from 11.2.0 to 11.3.1 in /telemetry/vscode #1230
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: Lint Telemetry Definitions | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main, feature/*] | |
| jobs: | |
| build: | |
| name: Build and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Sync Code | |
| uses: actions/checkout@v4 | |
| - name: Compile the Validation code | |
| run: | | |
| cd telemetry/validation | |
| npm ci | |
| npm run build | |
| npm run test | |
| - name: Validate the telemetry definitions | |
| run: | | |
| cd telemetry/validation | |
| npm run validate |