auth: Support azure-pipelines
for --federated-credential-provider
#1135
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: misc | |
on: | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
# Changes here should be kept in-sync with projects listed in cspell.misc.yaml | |
- 'eng/**' # Not required | |
# Standalone projects that have their own cspell | |
- 'cli/**' | |
- 'ext/vscode/**' | |
- 'ext/devcontainer/**' | |
- 'templates/**' | |
jobs: | |
cspell-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- run: npm install -g [email protected] | |
- name: Spell check for general files | |
run: cspell lint '**/*' --config ./.vscode/cspell.misc.yaml --relative --no-progress |