We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b970bd commit 07dd600Copy full SHA for 07dd600
1 file changed
github-action/action.yml
@@ -13,12 +13,17 @@ inputs:
13
runs:
14
using: 'composite'
15
steps:
16
- - run: |
17
- cd ${{ github.action_path }}
+ - name: Build action
+ run: |
18
npm ci
19
npm run build
20
- node dist/index.js
21
shell: bash
+ working-directory: ${{ github.action_path }}
22
+
23
+ - name: Run compiler
24
+ run: node ${{ github.action_path }}/dist/index.js
25
+ shell: bash
26
+ working-directory: ${{ github.workspace }}
27
env:
28
INPUT_SOURCE-ROOT: ${{ inputs.source-root }}
29
INPUT_OUTPUT-FILE: ${{ inputs.output-file }}
0 commit comments