chore(deps): update all non-major dependencies #548
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: Verify PR | |
| on: pull_request | |
| jobs: | |
| verify: | |
| name: Verify (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node version | |
| uses: actions/setup-node@v5 | |
| with: | |
| scope: '@vscode-elements' | |
| node-version: 22 | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: 'npm' | |
| cache-dependency-path: | | |
| package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Transpile files | |
| run: npm run build:ts | |
| - name: Prettier | |
| run: npm run prettier | |
| - name: ESLint | |
| run: npm run lint | |
| - name: Test | |
| run: npm run test |