Add Lint ARM Templates step #31
Workflow file for this run
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: ARM Templates | |
on: | |
pull_request: | |
paths: | |
- "deploy/azure/*.json" | |
push: | |
branches: | |
- main | |
paths: | |
- "deploy/azure/*.json" | |
jobs: | |
lint-arm-ttk: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
template: [ "ARM-for-organization-account", "ARM-for-single-account" ] | |
steps: | |
- uses: actions/checkout@v4 | |
# Copy files to its own folder because it's what the official ARM-TTK action expects | |
# Docs https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/test-toolkit#test-parameters | |
- name: copy file | |
working-directory: ./deploy/azure | |
run: | | |
mkdir ${{ matrix.template }} | |
cp ${{ matrix.template }}.json ${{ matrix.template }}/azuredeploy.json | |
- uses: microsoft/action-armttk@v1 | |
name: lint ${{ matrix.template }} | |
with: | |
github_token: ${{ secrets.github_token }} | |
workdir: "./deploy/azure/${{ matrix.template }}" |