Skip to content

Commit

Permalink
Enter correct directory when updating lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBrunton committed Apr 25, 2024
1 parent 95f71cb commit 8d644ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/update-lockfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,19 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}

- name: Update lockfile
run: yarn install
run: |
cd client
yarn install
- name: Commit and push changes
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add yarn.lock
git add client/yarn.lock
git commit -n -m "chore(snyk): update lockfile"
git push

0 comments on commit 8d644ec

Please sign in to comment.