We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5698eba commit fdf9f48Copy full SHA for fdf9f48
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: Run VSCode Extension Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - superbol-vscode-debug
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v2
17
18
+ - name: Setup Node.js environment
19
+ uses: actions/setup-node@v6
20
+ with:
21
+ node-version-file: 'package.json'
22
23
+ - name: Install dependencies
24
+ run: npm install
25
26
+ - name: Compile
27
+ run: npm run compile
28
29
+ - name: Run tests
30
+ run: xvfb-run -a npm test
31
+ if: runner.os == 'Linux'
.github/workflows/nodejs.yml
0 commit comments