Remove unused wrapper-command and extra-args parameters #40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Nested Action Wrapper | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run nested action with wrapper (using time) | |
| uses: ./ | |
| with: | |
| action-ref: "actions/hello-world-javascript@v1" | |
| extra-args: "who-to-greet time" | |
| wrapper-command: "time" | |
| - name: Run nested action with wrapper (using time) | |
| uses: ./ | |
| with: | |
| action-ref: "actions/hello-world-javascript@v1" | |
| wrapper-command: "time" | |
| who-to-greet: "Mona the Octocat" |