chore(deps): update dependency glob to v13 #4168
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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - renovate/** | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_call: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| node-version: | |
| - '16.x' | |
| - '18.x' | |
| - '20.x' | |
| steps: | |
| - name: set git core.autocrlf to 'input' | |
| run: git config --global core.autocrlf input | |
| - uses: actions/checkout@v6 | |
| - name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| cache-dependency-path: package-lock.json | |
| - run: npm install-ci-test | |
| - run: npm run vscode-types-compatible | |
| - run: npm run update-settings-docs | |
| - run: npm run build | |
| - run: npm run package | |
| - run: npm run eslint |