Skip to content

Commit 7625ecc

Browse files
committed
debug
1 parent 1488f0e commit 7625ecc

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.github/actions/restore-artifacts/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ inputs:
1919
runs:
2020
using: composite
2121
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+
2228
# Clients and tests
2329
- name: Download clients and tests artifacts
2430
if: ${{ inputs.type == 'all' }}

.github/workflows/check.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
# Uncomment the line below to enable artifacts debugging
15-
# env:
16-
# ACTIONS_RUNNER_DEBUG: true
15+
env:
16+
ACTIONS_RUNNER_DEBUG: true
1717

1818
jobs:
1919
setup:
@@ -59,6 +59,20 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v2
6161

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+
6276
specs:
6377
runs-on: ubuntu-20.04
6478
timeout-minutes: 10

0 commit comments

Comments
 (0)