-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (48 loc) · 1.26 KB
/
Copy pathci.yml
File metadata and controls
60 lines (48 loc) · 1.26 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
# agent-pmo:74cf183
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- name: Format check
run: make fmt CHECK=1
- name: Lint (includes shipwright.json schema check)
run: make lint
- name: Dry-run release stamp (proves the script still runs)
run: node scripts/stamp-release-version.mjs 0.0.0 --dry
# E2E suite needs xvfb so @vscode/test-electron can launch a headless Electron.
- name: Test
run: xvfb-run -a make test
- name: Build
run: make build
- name: Upload coverage
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
path: |
coverage/
lcov.info
retention-days: 7
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build
path: out/
retention-days: 7