Add Dynatrace to landscape model (#175) #39
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
# This workflow will build the openapm landscape model and checks, if the newly applied changes are valid. | |
name: Building Landscape Model | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 8.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '8.x' | |
cache: 'npm' | |
- run: npm install | |
- run: npm run-script build |