File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
actions/restore-artifacts Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ inputs:
19
19
runs :
20
20
using : composite
21
21
steps :
22
+ - name : Download clients-java artifact
23
+ if : ${{ inputs.java == 'true' && inputs.type == 'all' }}
24
+ uses : actions/download-artifact@v3
25
+ with :
26
+ name : clients-java
27
+
22
28
# Clients and tests
23
29
- name : Download clients and tests artifacts
24
30
if : ${{ inputs.type == 'all' }}
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ concurrency:
12
12
cancel-in-progress : true
13
13
14
14
# Uncomment the line below to enable artifacts debugging
15
- # env:
16
- # ACTIONS_RUNNER_DEBUG: true
15
+ env :
16
+ ACTIONS_RUNNER_DEBUG : true
17
17
18
18
jobs :
19
19
setup :
59
59
steps :
60
60
- uses : actions/checkout@v2
61
61
62
+ - name : Setup
63
+ uses : ./.github/actions/setup
64
+ with :
65
+ type : minimal
66
+
67
+ - name : Check script linting
68
+ run : yarn scripts:lint
69
+
70
+ - name : Test scripts
71
+ run : yarn scripts:test
72
+
73
+ - name : Test custom eslint plugin
74
+ run : yarn workspace eslint-plugin-automation-custom test
75
+
62
76
specs :
63
77
runs-on : ubuntu-20.04
64
78
timeout-minutes : 10
You can’t perform that action at this time.
0 commit comments