Skip to content

Commit

Permalink
change azurite to install via npm
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Jun 18, 2024
1 parent f5af936 commit 25deebd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/validate-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,16 @@ jobs:
- name: Build
run: dotnet build $solution #--configuration $config #--no-restore -p:FileVersionRevision=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=true

- name: Run Azurite
run: |
docker pull mcr.microsoft.com/azure-storage/azurite
docker run -d -p 10000:10000 -p 10001:10001 -p 10002:10002 --name azurite mcr.microsoft.com/azure-storage/azurite
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'

- name: Install Azurite
run: npm install -g azurite

- name: Start Azurite
run: azurite --silent &

- name: Test DTx.Core
run: dotnet test #--configuration $config --no-build --verbosity normal

0 comments on commit 25deebd

Please sign in to comment.