Nodejs Express without Artifact #5
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
name: Nodejs Express without Artifact | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'nodejs/express/**' | |
workflow_dispatch: | |
env: | |
WORKING_DIRECTORY: nodejs/express | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build-and-deploy-express-zip: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.WORKING_DIRECTORY }} | |
environment: | |
name: 'Production' | |
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
cache-dependency-path: ${{ env.WORKING_DIRECTORY }} | |
- name: npm install, build, and test | |
run: | | |
npm install | |
npm run build --if-present | |
npm run test --if-present | |
- name: Az CLI Login | |
uses: azure/login@v2 | |
with: | |
client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
- name: 'Run Azure webapp deploy action' | |
id: deploy-to-webapp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: ${{ vars.AZURE_WEBAPP_NAME }}-express | |
slot-name: 'Production' | |
package: ${{ env.WORKING_DIRECTORY }} | |
- name: Az CLI Logout | |
run: az logout |