Skip to content

docs: comprehensive environment variables documentation #10090

docs: comprehensive environment variables documentation

docs: comprehensive environment variables documentation #10090

Workflow file for this run

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