-
Notifications
You must be signed in to change notification settings - Fork 1.8k
51 lines (46 loc) · 1.37 KB
/
unit-tests-ui-bypass.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
# This workflow is required to ensure that required Github check passes even if
# the actual "Unit Tests UI" workflow skipped due to path filtering. Otherwise
# it will stay forever pending.
#
# See "Handling skipped but required checks" for more info:
#
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
#
# Note both workflows must have the same name.
name: Unit Tests UI
run-name: Unit Tests UI - ${{ github.run_id }} - @${{ github.actor }}
on:
pull_request:
paths-ignore:
- '.github/workflows/unit-tests-ui.yaml'
- 'web/**'
- 'gen/proto/js/**'
- 'gen/proto/ts/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'Cargo.toml'
- 'Cargo.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
- 'jest.config.js'
merge_group:
paths-ignore:
- '.github/workflows/unit-tests-ui.yaml'
- 'web/**'
- 'gen/proto/js/**'
- 'gen/proto/ts/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'Cargo.toml'
- 'Cargo.lock'
- 'tsconfig.json'
- 'tsconfig.node.json'
- 'jest.config.js'
jobs:
lint:
name: Test UI
runs-on: ubuntu-latest
permissions:
contents: none
steps:
- run: 'echo "No changes to verify"'