Skip to content

Commit 12c566d

Browse files
Update build-and-test.yml
1 parent b8919ee commit 12c566d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,19 @@ jobs:
4949
git fetch --prune --unshallow
5050
git submodule -q update --init --recursive
5151
52-
- name: Install Azurite
52+
- name: Setup Azurite
53+
if: matrix.options.os != 'windows-latest'
5354
shell: bash
54-
run: sudo npm install -g azurite
55+
run: |
56+
sudo npm install -g azurite
57+
sudo azurite --loose &
5558
56-
- name: Use Azurite
59+
- name: Setup Azurite Windows
60+
if: matrix.options.os == 'windows-latest'
5761
shell: bash
58-
run: sudo azurite --loose &
62+
run: |
63+
npm install -g azurite
64+
azurite --loose &
5965
6066
- name: Build
6167
shell: pwsh

0 commit comments

Comments
 (0)