-
Notifications
You must be signed in to change notification settings - Fork 30
50 lines (39 loc) · 992 Bytes
/
windows.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
name: Windows-CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
windows:
name: Windows
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install Node.js modules
run: npm install
- name: Install VSCE
run: npm install -g vsce
- name: Linting
run: npm run tslint
- name: Compiling
run: npm run compile
- name: Build VSIX file
run: vsce package
- name: Test extension
run: npm test
- uses: actions/upload-artifact@v3
if: always()
with:
name: jdtls-log
path: .vscode-test/user-data/User/workspaceStorage/*/redhat.java/jdt_ws/.metadata/.log
- uses: actions/upload-artifact@v3
if: always()
with:
name: boot-ls-log
path: test/projects/spring-petclinic/boot-ls.log