chore: Update dependencies #3
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
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| name: Test extension | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: npm install | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run VS Code Tests with xvfb | |
| run: | | |
| export ELECTRON_DISABLE_GPU=1 | |
| export ELECTRON_OZONE_PLATFORM_HINT=x11 | |
| xvfb-run --auto-servernum npm test |