chore(deps): bump qs from 6.14.0 to 6.14.1 #6878
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: Validate PR | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: [develop] | |
| jobs: | |
| pr-validation: | |
| uses: salesforcecli/github-workflows/.github/workflows/validatePR.yml@main | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ vars.NODE_VERSION || 'lts/*' }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run compile -w @salesforce/eslint-plugin-vscode-extensions | |
| name: Compile ESLint rules | |
| - name: Lint | |
| run: npm run lint |