Skip to content

Commit

Permalink
chore: move cd to same step as yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Jul 19, 2023
1 parent 91f46c2 commit 6063d64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ inputs:
runs:
using: composite
steps:
- run: cd ${{ inputs.working-directory }}
shell: bash
- name: Install node
uses: actions/setup-node@v3
with:
Expand All @@ -21,6 +19,8 @@ runs:
path: "**/node_modules"
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn --immutable
run: |
cd ${{ inputs.working-directory }}
yarn --immutable
shell: bash
if: steps.cache.outputs.cache-hit != 'true'

0 comments on commit 6063d64

Please sign in to comment.