-
Notifications
You must be signed in to change notification settings - Fork 1.8k
58 lines (49 loc) · 1.22 KB
/
lint-ui.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
name: Lint UI
run-name: Lint UI - ${{ github.run_id }} - @${{ github.actor }}
on:
pull_request:
paths:
- 'web/**'
- 'gen/proto/js/**'
- 'gen/proto/ts/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'Cargo.toml'
- 'Cargo.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
merge_group:
paths:
- 'web/**'
- 'gen/proto/js/**'
- 'gen/proto/ts/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'Cargo.toml'
- 'Cargo.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
jobs:
lint:
name: Prettier, ESLint, & TSC
runs-on: ubuntu-latest
container:
image: ghcr.io/gravitational/teleport-buildbox:teleport17
steps:
- name: Checkout OSS Teleport
uses: actions/checkout@v4
- name: Print Node version
run: |
node --version
- name: Install JS dependencies
run: pnpm install --frozen-lockfile
- name: Build WASM
run: pnpm build-wasm
- name: Run Type Check
run: pnpm type-check
- name: Run lint
run: pnpm lint
- name: Run Storybook smoke test
run: pnpm storybook-smoke-test
- name: Lint licenses
run: make lint-license