-
Notifications
You must be signed in to change notification settings - Fork 51
53 lines (52 loc) · 1.47 KB
/
lsp-ci.yaml
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
name: Language Server CI
on:
push:
branches: [main, dev, feature/*]
pull_request:
branches: [main, dev, feature/*]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Sync Code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
run: |
cd lsp
npm install
npm run compile
- name: Test
run: |
cd lsp
npm run test
build:
name: Package
runs-on: ubuntu-latest
steps:
- name: Sync Code
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
run: |
cd lsp
npm install
npm run compile
- name: Create binaries
run: |
cd lsp
npm run package
# TODO : Can we easily create ARM binaries from GitHub?
- name: Attach binaries
uses: actions/upload-artifact@v3
with:
name: langauge-servers
# Make sure you don't include lsp/node_modules
path: lsp/app/**/bin/*