-
Notifications
You must be signed in to change notification settings - Fork 65
77 lines (63 loc) · 1.6 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [18, 20, 22]
include:
- os: macos-latest
node_version: 20
- os: windows-latest
node_version: 20.13.1 # 20.14.0 keeps causing a native `node::SetCppgcReference+18123` error in Vitest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-build
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
test-e2e:
name: Test E2E
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-build
- name: Install Playwright Dependencies
run: pnpm --filter=tutorialkit-e2e exec playwright install chromium --with-deps
- name: Test
run: pnpm test:e2e
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-build
- name: Build docs
run: |
pnpm run docs:build
pnpm run demo:build
extension:
name: VSCode Extension
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup-and-build
- name: Build extension
run: |
pnpm run extension:build