File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 35
35
36
36
# install dependencies
37
37
install :
38
- runs-on : ubuntu-latest
38
+ runs-on : ubuntu-22.04
39
39
needs : one_run
40
40
steps :
41
41
- uses : actions/checkout@v3
50
50
# build ngx-bootstrap
51
51
build :
52
52
needs : install
53
- runs-on : ubuntu-latest
53
+ runs-on : ubuntu-22.04
54
54
steps :
55
55
- uses : actions/checkout@v3
56
56
- uses : actions/cache@v3
71
71
72
72
# run unit tests
73
73
unit_tests_with_coverage :
74
- runs-on : ubuntu-latest
74
+ runs-on : ubuntu-22.04
75
75
needs : build
76
76
steps :
77
77
- uses : actions/checkout@v3
90
90
91
91
# run linting
92
92
linting :
93
- runs-on : ubuntu-latest
93
+ runs-on : ubuntu-22.04
94
94
needs : install
95
95
steps :
96
96
- uses : actions/checkout@v3
@@ -103,7 +103,7 @@ jobs:
103
103
104
104
# firebase deploy preview
105
105
firebase_preview :
106
- runs-on : ubuntu-latest
106
+ runs-on : ubuntu-22.04
107
107
needs : build
108
108
outputs :
109
109
output_url : ${{ steps.firebase_hosting_preview.outputs.details_url }}
@@ -126,7 +126,7 @@ jobs:
126
126
# run playwright
127
127
e2e_smoke :
128
128
name : e2e smoke (${{ matrix.shard }}/${{ strategy.job-total }})
129
- runs-on : ubuntu-latest
129
+ runs-on : ubuntu-22.04
130
130
needs : [install, build, firebase_preview]
131
131
132
132
strategy :
@@ -166,7 +166,7 @@ jobs:
166
166
167
167
e2e_full :
168
168
name : e2e full
169
- runs-on : ubuntu-latest
169
+ runs-on : ubuntu-22.04
170
170
needs : [e2e_smoke]
171
171
172
172
strategy :
You can’t perform that action at this time.
0 commit comments