Skip to content

Commit

Permalink
πŸ› Fix(github actions): add git config to install action
Browse files Browse the repository at this point in the history
  • Loading branch information
INeedJobToStartWork committed Mar 29, 2024
1 parent 74c8d45 commit 655808a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/common-actions/install/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ runs:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

- name: πŸ€– Setup Git User
shell: bash
run: |
git config --global user.email "[email protected]"
git config --global user.name "INEEDJ"
- name: β†˜οΈ Install dependencies
shell: bash
run: pnpm install --no-frozen-lockfile

0 comments on commit 655808a

Please sign in to comment.