We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7ada93 + 8d19577 commit 286eab2Copy full SHA for 286eab2
1 file changed
action.yml
@@ -11,5 +11,17 @@ inputs:
11
description: 'Pull Request number that dispatched the workflow'
12
required: true
13
runs:
14
- using: "node16"
15
- main: "dist/index.js"
+ using: "composite"
+ steps:
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v3
18
+ with:
19
+ node-version: '18'
20
+
21
+ - name: ESLint Evaluator
22
+ run: node ${{ github.action_path }}/dist/index.js
23
+ shell: bash
24
+ env:
25
+ INPUT_TOKEN: ${{ inputs.token }}
26
+ INPUT_IGNOREINLINECONFIG: ${{ inputs.ignoreInlineConfig }}
27
+ INPUT_PR_NUMBER: ${{ inputs.pr_number }}
0 commit comments