We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39ad547 commit fa3e13bCopy full SHA for fa3e13b
.github/workflows/ci.yaml renamed to .github/workflows/build.yaml
.github/workflows/test.yaml
@@ -0,0 +1,31 @@
1
+
2
+name: Test VS Code Extension
3
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
11
+ workflow_dispatch:
12
13
+jobs:
14
+ test-extension:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - uses: actions/setup-node@v4
20
+ with:
21
+ node-version: latest
22
23
+ - name: Update build environment and install XVFB
24
+ run: |
25
+ sudo apt-get -y update
26
+ sudo apt-get -y install --fix-missing xvfb
27
28
+ - name: Compile and run tests
29
30
+ yarn install --immutable --immutable-cache --check-cache
31
+ yarn test-vscode
0 commit comments