chore: bump the development-dependencies group across 1 directory with 4 updates #7399
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: ' 🧪 Integration Tests' | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'website/**' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'website/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run-integration-tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| # - macos-latest # Disabled because github actions randomly fails on macos | |
| - ubuntu-latest | |
| - windows-latest | |
| vscode-version: [stable] | |
| include: | |
| - os: ubuntu-latest | |
| vscode-version: package.json | |
| - os: ubuntu-latest | |
| vscode-version: insiders | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| - name: Install and Build | |
| run: | | |
| npm i | |
| npm run build | |
| - name: Run Linux | |
| if: runner.os == 'Linux' | |
| env: | |
| VSCODE_VERSION: ${{ matrix.vscode-version }} | |
| run: xvfb-run -a npm run test-client-integration | |
| - name: Run Windows and MacOS | |
| if: runner.os != 'Linux' | |
| env: | |
| VSCODE_VERSION: ${{ matrix.vscode-version }} | |
| run: npm run test-client-integration | |
| run-integration-tests-vsix: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: | |
| - ${{ vars.DEFAULT_NODE_VERSION }} | |
| vscode-version: [stable] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Install | |
| run: | | |
| npm i | |
| - name: Build .vsix file | |
| run: npm run test-vsce-build | |
| - name: Build files for testing | |
| run: npm run build | |
| - name: Run Linux | |
| if: runner.os == 'Linux' | |
| env: | |
| VSCODE_VERSION: ${{ matrix.vscode-version }} | |
| VSIX_LOCATION: ./temp/code-spell-checker.vsix | |
| run: xvfb-run -a npm run test-client-integration | |
| - name: Run Windows and MacOS | |
| if: runner.os != 'Linux' | |
| env: | |
| VSCODE_VERSION: ${{ matrix.vscode-version }} | |
| VSIX_LOCATION: ./temp/code-spell-checker.vsix | |
| run: npm run test-client-integration | |
| # cspell:ignore xvfb |