-
Notifications
You must be signed in to change notification settings - Fork 4
76 lines (64 loc) · 1.89 KB
/
Copy pathtooling.yml
File metadata and controls
76 lines (64 loc) · 1.89 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
name: Tooling
on:
pull_request:
paths:
- 'Tooling/**'
- 'VS Code Extension/**'
- 'tools/scpsl-console-mcp/**'
- 'website/data/ser-truth-table.json'
- 'website/scripts/materialize-manifest.mjs'
- 'Directory.Build.targets'
- '.github/workflows/tooling.yml'
push:
branches: [main]
paths:
- 'Tooling/**'
- 'VS Code Extension/**'
- 'tools/scpsl-console-mcp/**'
- 'website/data/ser-truth-table.json'
- 'website/scripts/materialize-manifest.mjs'
- 'Directory.Build.targets'
- '.github/workflows/tooling.yml'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: tooling-${{ github.ref }}
cancel-in-progress: true
jobs:
clients:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
cache-dependency-path: |
Tooling/package-lock.json
VS Code Extension/package-lock.json
- name: Install locked dependencies
run: |
npm ci --prefix Tooling
npm ci --prefix "VS Code Extension"
- name: Materialize the build manifest
run: node website/scripts/materialize-manifest.mjs
- name: Verify the shared editor and language core
run: npm run verify --prefix Tooling
- name: Verify the VS Code extension
run: npm run verify --prefix "VS Code Extension"
console-bridge:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Test the LocalAdmin bridge
run: node --test tools/scpsl-console-mcp/server.test.mjs