Merge pull request #474 from keymanapp/feat/split-epics-from-author #292
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | |
# More GitHub Actions for Azure: https://github.com/Azure/actions | |
name: Build and deploy Node.js app to Azure Web App - com-keyman-status | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Node.js version | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: npm install, build, and test | |
run: | | |
npm install | |
npm run build --if-present | |
npm run test --if-present | |
- name: 'Deploy to Azure Web App' | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'com-keyman-status' | |
slot-name: 'production' | |
publish-profile: ${{ secrets.AzureAppService_PublishProfile_29683e7e380246d28c473e1643a69a4d }} | |
package: . |