-
Notifications
You must be signed in to change notification settings - Fork 16
47 lines (47 loc) · 1.05 KB
/
ci.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
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck:
name: Static Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install deps
run: pnpm install
- name: Style Check
run: pnpm run format:check
- name: Lint Check
run: pnpm run lint
- name: Type Check
run: pnpm run typecheck
test:
name: VSCode Test
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install sg
run: pnpm install -g @ast-grep/cli
- name: Install deps
run: pnpm install
- name: Compile
run: pnpm run compile
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: pnpm test