-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 793 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (32 loc) · 793 Bytes
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
name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
core:
name: Core (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.15.0
- uses: actions/setup-node@v4
with:
node-version: 24.19.0
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test
- run: pnpm typecheck
- run: pnpm check:webview
- run: pnpm branding:verify
- run: pnpm release:scan
- run: pnpm --filter mcode-workbench build
- run: pnpm open-vsx:verify
- run: pnpm release:preflight