-
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (74 loc) · 1.98 KB
/
build.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
78
79
80
81
82
83
84
85
86
87
name: Build and test
on:
push:
branches:
- '**'
pull_request:
branches:
- 'master'
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/release'
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Checkout
uses: actions/checkout@v4
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
with:
cli: latest
bb: latest
- name: Cache clojure/java dependencies
uses: actions/cache@v4
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: ${{ runner.os }}-clojure-${{ hashFiles('**/*.edn') }}
restore-keys: |
${{ runner.os }}-clojure-
- name: Install node dependencies
run: npm install
- name: Cache npm
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Build VSIX
run: |
set -x
npm run package
- name: Get VSIX File Name
id: get-vsix-name
run: echo "VSIX_NAME=$(ls *.vsix)" >> $GITHUB_ENV
- name: Upload VSIX Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.VSIX_NAME }}
path: ${{ env.VSIX_NAME }}
- name: Upload Test Artifact
uses: actions/upload-artifact@v4
with:
name: extension-tests
path: out/extension-tests.js
release-test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download Test Artifact
uses: actions/download-artifact@v4
with:
name: extension-tests
pattern: out/extension-tests.js
merge-multiple: true
path: out/
- name: Run Tests
run: node out/extension-tests.js