Skip to content

Commit

Permalink
Configures a git user in the workplace scope when running the test ac…
Browse files Browse the repository at this point in the history
…tion.
  • Loading branch information
theenoahmason committed Jun 5, 2024
1 parent 8f8dcd0 commit da21bf5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}

# Config a dummy git user for use in the repo initialization.
- name: Config Git User
id: config_git_user
run: |
git config user.name "Test User"
git config user.email "[email protected]"
# Installs npm and composer dependencies.
- name: Install
id: install
Expand Down

0 comments on commit da21bf5

Please sign in to comment.