docs: comprehensive environment variables documentation #10090
This file contains hidden or 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: cli-ci | |
| on: | |
| pull_request: | |
| paths: | |
| - "cli/**" | |
| - "!cli/azd/extensions/**" | |
| - ".github/workflows/cli-ci.yml" | |
| branches: [main] | |
| # If two events are triggered within a short time in the same PR, cancel the run of the oldest event | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| azd-lint: | |
| uses: ./.github/workflows/lint-go.yml | |
| with: | |
| working-directory: cli/azd | |
| cspell-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - run: npm install -g cspell@8.13.1 | |
| - name: Spell check for go and docs | |
| run: cspell lint '**/*.{go,md}' --config ./cli/azd/.vscode/cspell.yaml --root ./cli/azd --no-progress | |
| Copyright-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Copyright check | |
| run: ./eng/scripts/copyright-check.sh ./cli/azd | |
| bicep-lint: | |
| uses: ./.github/workflows/lint-bicep.yml |