From ea75ed777daf24d6e95f43957bd26b1eab20806c Mon Sep 17 00:00:00 2001 From: Ana Maria Martinez Gomez Date: Tue, 27 Jul 2021 16:00:53 +0200 Subject: [PATCH] Small improvements in test workflow Make easier to read the log. --- .github/workflows/test.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index efac3e02..e7af1b48 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -83,10 +83,7 @@ jobs: uses: actions/checkout@v2 - id: files - name: Run the action - uses: ./ - with: - filter: '*' + name: Run the action without filtering - name: Print files run: | @@ -96,10 +93,9 @@ jobs: echo 'steps.files.outputs.removed=${{ steps.files.outputs.removed }}' echo 'steps.files.outputs.renamed=${{ steps.files.outputs.renamed }}' echo 'steps.files.outputs.added_modified=${{ steps.files.outputs.added_modified }}' - + - id: files-filtered - name: Run the action - uses: ./ + name: Run the action with filtering with: filter: | *.yml @@ -108,7 +104,6 @@ jobs: *.ts package* !*.json - - name: Print files-filtered run: | @@ -118,4 +113,4 @@ jobs: echo 'steps.files-filtered.outputs.removed=${{ steps.files-filtered.outputs.removed }}' echo 'steps.files-filtered.outputs.renamed=${{ steps.files-filtered.outputs.renamed }}' echo 'steps.files-filtered.outputs.added_modified=${{ steps.files-filtered.outputs.added_modified }}' - +