We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8919ee commit 12c566dCopy full SHA for 12c566d
.github/workflows/build-and-test.yml
@@ -49,13 +49,19 @@ jobs:
49
git fetch --prune --unshallow
50
git submodule -q update --init --recursive
51
52
- - name: Install Azurite
+ - name: Setup Azurite
53
+ if: matrix.options.os != 'windows-latest'
54
shell: bash
- run: sudo npm install -g azurite
55
+ run: |
56
+ sudo npm install -g azurite
57
+ sudo azurite --loose &
58
- - name: Use Azurite
59
+ - name: Setup Azurite Windows
60
+ if: matrix.options.os == 'windows-latest'
61
- run: sudo azurite --loose &
62
63
+ npm install -g azurite
64
+ azurite --loose &
65
66
- name: Build
67
shell: pwsh
0 commit comments