Skip to content

Commit

Permalink
Update table into CI
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoningLiu authored Apr 30, 2021
1 parent 73603d1 commit 0ce0316
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ jobs:
azurite -v
azurite-blob -v
azurite-queue -v
azurite-table -v
workingDirectory: "./"
displayName: "Validate npm global installation from GitHub code base"
Expand Down Expand Up @@ -401,6 +402,7 @@ jobs:
azurite -v
azurite-blob -v
azurite-queue -v
azurite-table -v
workingDirectory: "./"
displayName: "Validate npm global installation from GitHub code base"
Expand Down Expand Up @@ -449,6 +451,7 @@ jobs:
azurite -v
azurite-blob -v
azurite-queue -v
azurite-table -v
workingDirectory: "./"
displayName: "Validate npm global installation from GitHub code base"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@
"test:table": "npm run lint && cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --compilers ts-node/register --no-timeouts --recursive tests/table/*.test.ts tests/table/apis/*.test.ts tests/table/apis/**/*.test.ts",
"clean": "rimraf dist typings *.log coverage __testspersistence__ temp __testsstorage__ .nyc_output debug.log *.vsix *.tgz",
"clean:deep": "npm run clean && rimraf debug.log __*",
"validate:npmpack:win": "npm install && npm run build && npm pack && cross-var npm install -g azurite-$npm_package_version.tgz && azurite -v && azurite-blob -v && azurite-queue -v",
"validate:npmpack:linux_mac": "npm install && npm run build && npm pack && cross-var sudo npm install -g azurite-$npm_package_version.tgz && azurite -v && azurite-blob -v && azurite-queue -v",
"validate:npmpack:win": "npm install && npm run build && npm pack && cross-var npm install -g azurite-$npm_package_version.tgz && azurite -v && azurite-blob -v && azurite-queue -v && azurite-table -v",
"validate:npmpack:linux_mac": "npm install && npm run build && npm pack && cross-var sudo npm install -g azurite-$npm_package_version.tgz && azurite -v && azurite-blob -v && azurite-queue -v && azurite-table -v",
"db:migrate:blob:metadata": "sequelize db:migrate --config migrations/blob/metadata/config/config.json --migrations-path migrations/blob/metadata/migrations",
"db:create:blob:metadata": "sequelize db:create --config migrations/blob/metadata/config/config.json --migrations-path migrations/blob/metadata/migrations"
},
Expand Down

0 comments on commit 0ce0316

Please sign in to comment.