diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 48956a9bfaf1..b547b17ad31e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -78,6 +78,7 @@ jobs: id: module_names with: script: | + const core = require('@actions/core') const script = require('./.github/scripts/get_module_path.js') console.log('Raw modules_files:', '${{ steps.filter.outputs.modules_files }}') const files = JSON.parse('${{ steps.filter.outputs.modules_files }}') @@ -88,8 +89,8 @@ jobs: - name: debug run: | - echo ${{ steps.filter.outputs.modules_files }} - echo ${{ steps.module_names.outputs.result }} + echo "Modules files: ${{ steps.filter.outputs.modules_files }}" + echo "Module names: ${{ steps.module_names.outputs.result }}" nf-core-lint-modules: runs-on: ${{ github.event.inputs.runners || 'self-hosted' }}