chore(deps-dev): bump eslint from 9.34.0 to 9.35.0 #135
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: Sync Engine with Dependency | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| paths: | |
| - 'package.json' | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| - name: Sync engine version | |
| run: | | |
| node scripts/syncPackageEngineWithDependency.mjs vscode @types/vscode | |
| - name: Commit if changed | |
| id: commit | |
| continue-on-error: true | |
| run: | | |
| git config user.name "github-actions" | |
| git config user.email "github-actions@github.com" | |
| git add package.json | |
| git commit -m "chore: sync vscode engine version with dependency" | |
| - name: push | |
| if: steps.commit.outcome != 'failure' | |
| run: git push |