File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
verify_files :
11
11
name : Verify Files
12
- runs-on : [self-hosted, ubuntu-latest]
12
+ runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
with :
26
26
27
27
unit_tests :
28
28
name : Unit Tests
29
- runs-on : [self-hosted, ubuntu-latest]
29
+ runs-on : ubuntu-latest
30
30
steps :
31
31
- uses : actions/checkout@v4
32
32
with :
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
cleanup :
10
- runs-on : self-hosted || ubuntu-latest
10
+ runs-on : ubuntu-latest
11
11
permissions :
12
12
contents : write
13
13
pages : write
Original file line number Diff line number Diff line change 13
13
jobs :
14
14
verify_title :
15
15
name : Verify Title
16
- runs-on : self-hosted || ubuntu-latest
16
+ runs-on : ubuntu-latest
17
17
if : ${{github.event.action != 'checks_requested'}}
18
18
steps :
19
19
- name : Checkout
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name: Publication
6
6
7
7
jobs :
8
8
publication :
9
- runs-on : self-hosted || ubuntu-latest
9
+ runs-on : ubuntu-latest
10
10
env :
11
11
ASSET_NAME : embedded-ui
12
12
steps :
Original file line number Diff line number Diff line change 9
9
jobs :
10
10
e2e_tests :
11
11
name : Playwright Tests
12
- runs-on : self-hosted || ubuntu-latest
12
+ runs-on : ubuntu-latest
13
13
permissions :
14
14
contents : read
15
15
92
92
93
93
bundle_size :
94
94
name : Check Bundle Size
95
- runs-on : self-hosted || ubuntu-latest
95
+ runs-on : ubuntu-latest
96
96
if : github.event_name == 'pull_request'
97
97
outputs :
98
98
current_size : ${{ steps.current_size.outputs.size }}
@@ -157,7 +157,7 @@ jobs:
157
157
name : Deploy Test Report
158
158
needs : [e2e_tests]
159
159
if : always() && (github.event_name == 'push' && github.ref == 'refs/heads/main' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository))
160
- runs-on : self-hosted || ubuntu-latest
160
+ runs-on : ubuntu-latest
161
161
permissions :
162
162
contents : write
163
163
pages : write
@@ -209,7 +209,7 @@ jobs:
209
209
name : Update PR Description
210
210
needs : [e2e_tests, bundle_size]
211
211
if : always() && github.event_name == 'pull_request'
212
- runs-on : self-hosted || ubuntu-latest
212
+ runs-on : ubuntu-latest
213
213
permissions :
214
214
pull-requests : write
215
215
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ name: Release
9
9
jobs :
10
10
release :
11
11
if : github.repository == 'ydb-platform/ydb-embedded-ui'
12
- runs-on : self-hosted || ubuntu-latest
12
+ runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
15
- uses : actions/setup-node@v4
You can’t perform that action at this time.
0 commit comments