-
Notifications
You must be signed in to change notification settings - Fork 39
139 lines (105 loc) · 3.36 KB
/
ci.yaml
File metadata and controls
139 lines (105 loc) · 3.36 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "pnpm"
- run: pnpm install
- run: pnpm typecheck
- run: pnpm format:check
- run: pnpm lint
- run: pnpm build
test-unit:
name: Unit Test (Electron ${{ matrix.electron-version }})
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
# Minimum supported version: VS Code 1.95 (Oct 2024) -> Electron 32 -> Node 20
electron-version: ["32", "latest"]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "pnpm"
- run: pnpm install
- name: Run tests with Electron ${{ matrix.electron-version }}
run: ./scripts/test-electron.sh ${{ matrix.electron-version }}
env:
CI: true
test-integration:
name: Integration Test (VS Code ${{ matrix.vscode-version }})
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
vscode-version: ["1.95.0", "stable"]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "pnpm"
- run: pnpm install
- run: pnpm build
- name: Run integration tests on VS Code ${{ matrix.vscode-version }}
run: xvfb-run -a pnpm test:integration --label "VS Code ${{ matrix.vscode-version }}"
package:
name: Package
runs-on: ubuntu-22.04
needs: [lint, test-unit, test-integration]
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "22"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Get version from package.json
id: version
run: |
VERSION=$(node -e "console.log(require('./package.json').version)")
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Version: $VERSION"
- name: Setup package path
id: setup
run: |
EXTENSION_NAME=$(node -e "console.log(require('./package.json').name)")
# Add commit SHA for CI builds
SHORT_SHA=$(git rev-parse --short HEAD)
PACKAGE_NAME="${EXTENSION_NAME}-${{ steps.version.outputs.version }}-${SHORT_SHA}.vsix"
echo "packageName=$PACKAGE_NAME" >> $GITHUB_OUTPUT
- name: Package extension
run: pnpm vsce package --no-dependencies --out "${{ steps.setup.outputs.packageName }}"
- name: Upload artifact (PR)
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v7
with:
path: ${{ steps.setup.outputs.packageName }}
if-no-files-found: error
retention-days: 7
archive: false
- name: Upload artifact (main)
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v7
with:
path: ${{ steps.setup.outputs.packageName }}
if-no-files-found: error
archive: false