update static app deployment trigger

This commit is contained in:
Chris Trevino 2021-09-09 16:48:13 -07:00
Родитель ada9b9560e
Коммит a2ca43f087
2 изменённых файлов: 14 добавлений и 14 удалений

2
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -31,7 +31,7 @@ jobs:
- name: Deploy Static Webapp
run: yarn build:webapp:integ && yarn deploy:webapp
if: matrix.node-version == '14.x' && github.ref == 'refs/heads/dev'
if: matrix.node-version == '14.x' && github.ref == 'refs/heads/main'
env:
CI: true
WEBAPP_STORAGE_ACCOUNT: ${{ env.WEBAPP_STORAGE_ACCOUNT }}

Просмотреть файл

@ -3,6 +3,19 @@
"title": "Graph Drilldown",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "essex clean build",
"start": "essex serve",
"typecheck": "tsc -b .",
"bundle": "essex bundle --webpack",
"assets": "ncp public build",
"ci": "run-s clean lint typecheck bundle assets git_is_clean",
"lint": "essex lint --strict",
"lint:fix": "yarn lint --fix",
"prettify": "essex prettify",
"deploy": "essex deploy --type azure-blob-storage --storageAccount $STORAGE_ACCOUNT --storageAccountKey $STORAGE_KEY --verbose",
"git_is_clean": "essex git-is-clean"
},
"dependencies": {
"@commitlint/cli": "^12.1.2",
"@essex-js-toolkit/hierarchy-browser": "3.0.1",
@ -100,19 +113,6 @@
"webpack": "^5.36.2",
"worker-loader": "^3.0.8"
},
"scripts": {
"clean": "essex clean build",
"start": "essex serve",
"typecheck": "tsc -b .",
"bundle": "essex bundle --webpack",
"assets": "ncp public build",
"ci": "run-s clean lint typecheck bundle assets git_is_clean",
"lint": "essex lint --strict",
"lint:fix": "yarn lint --fix",
"prettify": "essex prettify",
"deploy": "essex deploy --type azure-blob-storage --storageAccount $STORAGE_ACCOUNT --storageAccountKey $STORAGE_KEY --verbose",
"git_is_clean": "essex git-is-clean"
},
"browserslist": {
"production": [
">80%"