-
Notifications
You must be signed in to change notification settings - Fork 1.8k
55 lines (47 loc) · 1.19 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
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'
- 'yarn.lock'
- 'Cargo.toml'
- 'Cargo.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
merge_group:
paths:
- 'web/**'
- 'gen/proto/js/**'
- 'gen/proto/ts/**'
- 'package.json'
- 'yarn.lock'
- '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:teleport16
steps:
- name: Checkout OSS Teleport
uses: actions/checkout@v4
- name: Print Node version
run: |
node --version
- name: Install Yarn dependencies
run: bash web/packages/build/scripts/yarn-install-frozen-lockfile.sh
- name: Build WASM
run: yarn build-wasm
- name: Run Type Check
run: yarn type-check
- name: Run lint
run: yarn lint
- name: Run Storybook smoke test
run: yarn storybook-smoke-test