-
Notifications
You must be signed in to change notification settings - Fork 1.8k
51 lines (44 loc) · 1.21 KB
/
unit-tests-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
name: Unit Tests UI
run-name: Unit Tests UI - ${{ github.run_id }} - @${{ github.actor }}
on:
pull_request:
paths:
- '.github/workflows/unit-tests-ui.yaml'
- 'web/**'
- 'gen/proto/js/**'
- 'package.json'
- 'yarn.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
- 'jest.config.js'
merge_group:
paths:
- '.github/workflows/unit-tests-ui.yaml'
- 'web/**'
- 'gen/proto/js/**'
- 'package.json'
- 'yarn.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
- 'jest.config.js'
jobs:
test:
name: Test UI
runs-on: ubuntu-latest
steps:
- name: Checkout OSS Teleport
uses: actions/checkout@v4
- name: Determine Toolchain Versions
run: |
echo NODE_VERSION=$(make -s -C build.assets print-node-version) >> $GITHUB_ENV
- name: Print versions
run: |
echo "node: ${NODE_VERSION}"
- name: Setup Node Toolchain
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Yarn dependencies
run: bash web/packages/build/scripts/yarn-install-frozen-lockfile.sh
- name: Run tests
run: yarn test