diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..35d231e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Augury examples build and deploy to github pages + +on: + push: + branches: [master, feat-ivy-version] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code 🛎️ + uses: actions/checkout@v2 + + - name: Install and Build 🔧 + run: | + npm ci + npm run build + + - name: Deploy build artifact 🚀 + uses: JamesIves/github-pages-deploy-action@4.0.0 + with: + branch: gh-pages + folder: dist/augury-examples diff --git a/package-lock.json b/package-lock.json index dce9cad..682fb74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -114,6 +114,14 @@ "tslib": "1.10.0", "typescript": "3.5.3", "webpack-sources": "1.4.3" + }, + "dependencies": { + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + } } }, "@angular-devkit/build-webpack": { @@ -11093,9 +11101,9 @@ } }, "tslib": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", - "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "tslint": { "version": "5.15.0", diff --git a/package.json b/package.json index 0812f7f..2877346 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "@angular/platform-browser-dynamic": "~8.2.14", "@angular/router": "~8.2.14", "rxjs": "~6.4.0", - "tslib": "^1.10.0", + "tslib": "^1.14.1", "zone.js": "~0.9.1", "tachyons": "^4.11.1" },