-
Notifications
You must be signed in to change notification settings - Fork 13
110 lines (94 loc) · 2.51 KB
/
ci-typescript.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: CI (TypeScript)
on:
pull_request:
paths:
- '.github/workflows/ci-typescript.yml'
- '.github/actions/**'
- '**.ts'
- '**.tsx'
- '**.js'
- '**.json'
- '**package.json'
- '.eslint*'
- '*prettier*'
- '**babel.config.js'
- 'tsconfig.json'
- 'typedoc.json'
- '**yarn.lock'
- '**react-native.config.js'
- '**metro.config.js'
- '!*/android/**'
- '!*/ios/**'
push:
branches: [development]
paths:
- '.github/workflows/ci-typescript.yml'
- '.github/actions/**'
- '**.ts'
- '**.tsx'
- '**.js'
- '**.json'
- '**package.json'
- '.eslint*'
- '*prettier*'
- '**babel.config.js'
- 'tsconfig.json'
- 'typedoc.json'
- '**yarn.lock'
- '**react-native.config.js'
- '**metro.config.js'
- '!*/android/**'
- '!*/ios/**'
concurrency:
group: ci-typescript-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
code-style-typescript:
name: Code style
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node and npm registry
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'
cache: 'yarn'
- name: Install node_modules
run: yarn install --frozen-lockfile
- name: Lint Typescript
run: yarn lint
test-build-typescript:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node and npm registry
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'
cache: 'yarn'
- name: Install node_modules
run: yarn install --frozen-lockfile
- name: Install node_modules (example/)
run: yarn install --frozen-lockfile --cwd example
- name: Install node_modules (integration_test/)
run: yarn install --frozen-lockfile --cwd integration_test
- name: Compile TypeScript
run: yarn typescript
test-build-docs:
name: Build API docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-environment
with:
node: true
subprojects: true
- name: Build docs
run: yarn docs