Skip to content

Commit

Permalink
Updates to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Aug 24, 2023
1 parent 7f82e56 commit 3f5e499
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ input.node }}
node-version: ${{ inputs.node }}
cache: 'npm'

- name: Install dependencies
Expand All @@ -52,5 +52,5 @@ runs:
name: Run BrowserStack tests
run: npx concurrently --raw --kill-others --success first "npm:dev" "wait-on http://127.0.0.1:3000/ && browserstack-cypress run --build-name ${{ github.ref }}"
env:
BROWSERSTACK_ACCESS_KEY: ${{ input.browserstack-access-key }}
BROWSERSTACK_USERNAME: ${{ input.browserstack-username }}
BROWSERSTACK_ACCESS_KEY: ${{ inputs.browserstack-access-key }}
BROWSERSTACK_USERNAME: ${{ inputs.browserstack-username }}
2 changes: 1 addition & 1 deletion .github/actions/framework/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ input.node }}
node-version: ${{ inputs.node }}
cache: 'npm'

- name: Restore build artifacts
Expand Down

0 comments on commit 3f5e499

Please sign in to comment.