-
-
Notifications
You must be signed in to change notification settings - Fork 131
56 lines (50 loc) · 1.37 KB
/
integration-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: " 🧪 Integration Tests"
on:
pull_request:
paths-ignore:
- "docs/**"
push:
branches:
- main
paths-ignore:
- "docs/**"
jobs:
run-integration-tests:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version:
- ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: [stable]
include:
- os: ubuntu-latest
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: package.json
- os: ubuntu-latest
node-version: ${{ vars.DEFAULT_NODE_VERSION }}
vscode-version: insiders
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install and Build
run: |
npm i
npm run build
- name: Run Linux
if: runner.os == 'Linux'
env:
VSCODE_VERSION: ${{ matrix.vscode-version }}
run: xvfb-run -a npm run test-client-integration
- name: Run Windows and MacOS
if: runner.os != 'Linux'
env:
VSCODE_VERSION: ${{ matrix.vscode-version }}
run: npm run test-client-integration
# cspell:ignore xvfb