chore(deps): update all devdependencies #651
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: Run E2E tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| e2e: | |
| name: Run E2E tests | |
| runs-on: "${{ matrix.os }}" | |
| strategy: | |
| matrix: | |
| version: ["1.90.0", "stable", "insiders"] | |
| os: [ubuntu-latest] | |
| include: | |
| - version: "stable" | |
| os: "windows-latest" | |
| steps: | |
| - run: sudo apt update && sudo apt install -y libasound2t64 libgbm1 libgtk-3-0 libnss3 xvfb expect | |
| if: runner.os == 'Linux' | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: "npm" | |
| node-version: 24 | |
| - run: npm ci | |
| - run: echo 'APOLLO_KEY="service:bob-123:489fhseo4"' > ./sampleWorkspace/spotifyGraph/.env | |
| shell: bash | |
| # Print rover version per OS | |
| - name: Install & Configure Rover (Linux) | |
| run: ./node_modules/.bin/rover --version | |
| if: runner.os == 'Linux' | |
| - name: Install Rover (Windows) | |
| run: ./node_modules/.bin/rover.cmd --version | |
| if: runner.os == 'Windows' | |
| # auth rover per OS | |
| - name: Configure Rover (Linux) | |
| run: | | |
| expect <<EOF | |
| spawn ./node_modules/.bin/rover config auth --profile VSCode-E2E | |
| expect "Copy the key and paste it into the prompt below." | |
| send -- "test\n" | |
| expect eof | |
| EOF | |
| if: runner.os == 'Linux' | |
| - name: Configure Rover (Windows) | |
| run: | | |
| [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | |
| Start-Process -FilePath ./node_modules/.bin/rover.cmd -ArgumentList "config","auth","--profile","VSCode-E2E" | |
| Start-Sleep -m 1000 | |
| [System.Windows.Forms.SendKeys]::SendWait("test") | |
| [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") | |
| if: runner.os == 'Windows' | |
| shell: powershell | |
| # Print profiles per OS | |
| - name: Print Rover profiles (Linux) | |
| run: ./node_modules/.bin/rover config list | |
| if: runner.os == 'Linux' | |
| - name: Print Rover profiles (Windows) | |
| run: ./node_modules/.bin/rover.cmd config list | |
| if: runner.os == 'Windows' | |
| - name: Adjust configuration (Windows) | |
| run: | | |
| sed -i -e 's/\(bin:.*\)/\1.exe/' sampleWorkspace/rover/apollo.config.yaml | |
| cat sampleWorkspace/rover/apollo.config.yaml | |
| # for some reason, windows seems to ignore the jest.e2e.config.js file | |
| echo "module.exports = require('./jest.e2e.config')" > jest.config.ts | |
| shell: bash | |
| if: runner.os == 'Windows' | |
| - run: npm run build:production | |
| # Run test per OS | |
| - name: "Run Extension E2E tests (Linux)" | |
| run: xvfb-run -a npm run test:extension | |
| env: | |
| VSCODE_VERSION: "${{ matrix.version }}" | |
| if: runner.os == 'Linux' | |
| - name: "Run Extension E2E tests (Windows)" | |
| run: npm run test:extension | |
| env: | |
| VSCODE_VERSION: "${{ matrix.version }}" | |
| if: runner.os == 'Windows' |