Skip to content

Commit 505da14

Browse files
authored
Merge pull request ds300#187 from DanielRuf/ci/fix-windows-setup
split the git config commands to fix the Windows CI setup
2 parents 46c1405 + 46cb055 commit 505da14

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/push.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [windows-latest,ubuntu-latest,macos-latest]
10-
node: [10,12,13]
9+
os: [windows-latest, ubuntu-latest, macos-latest]
10+
node: [10, 12, 13]
1111
steps:
12-
- uses: actions/checkout@v1
13-
- uses: actions/setup-node@v1
14-
with:
15-
node-version: ${{ matrix.node }}
16-
- run: yarn install
17-
- run: git config --global user.email "[email protected]" && git config --global user.name "patch-package"
18-
- run: yarn run test
12+
- uses: actions/checkout@v1
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: ${{ matrix.node }}
16+
- run: yarn install
17+
- run: git config --global user.email "[email protected]"
18+
- run: git config --global user.name "patch-package"
19+
- run: yarn run test

0 commit comments

Comments
 (0)