-
Notifications
You must be signed in to change notification settings - Fork 19
77 lines (64 loc) · 1.69 KB
/
vscode.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: vscode
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use NodeJS 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Go 1.21
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: build
run: |
npm run build
- uses: getgauge/setup-gauge@master
with:
gauge-version: master
gauge-plugins: screenshot,html-report,js
- name: Run tests (linux)
if: matrix.os == 'ubuntu-latest'
run: |
xvfb-run --auto-servernum npm test
- name: Run compatibility tests (linux)
if: matrix.os == 'ubuntu-latest'
run: |
xvfb-run --auto-servernum npm run compatibilityTest
- name: Run tests (macos)
if: matrix.os == 'macos-latest'
run: |
npm test
- name: Run compatibility tests (macos)
if: matrix.os == 'macos-latest'
run: |
npm run compatibilityTest
- name: Run tests (windows)
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
npm test
- name: Run compatibility tests (windows)
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
npm run compatibilityTest
- name: Upload logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: logs-${{ matrix.os }}
path: test/testdata/sampleProject/