We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b0f80 commit d466b9eCopy full SHA for d466b9e
.github/workflows/test.yaml
@@ -2,7 +2,7 @@ on:
2
pull_request:
3
branches:
4
- master
5
-
+
6
name: Test extension
7
jobs:
8
deploy:
@@ -11,5 +11,16 @@ jobs:
11
- uses: actions/checkout@v2
12
- run: npm install
13
14
- - name: Run tests
15
- run: npm test
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: latest
18
19
+ - name: Install dependencies
20
+ run: npm install
21
22
+ - name: Run VS Code Tests with xvfb
23
+ run: |
24
+ export ELECTRON_DISABLE_GPU=1
25
+ export ELECTRON_OZONE_PLATFORM_HINT=x11
26
+ xvfb-run --auto-servernum npm test
0 commit comments