Update missing node16 references to node18 #1402
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: templates-ci | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
paths: | |
- "templates/**" | |
- ".github/workflows/templates-ci.yml" | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
bicep-lint: | |
uses: ./.github/workflows/lint-bicep.yml | |
cspell-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- run: npm install -g cspell | |
- name: Spell check for templates | |
run: cspell lint '**/*' --config ./templates/cspell.yaml --root ./templates --no-progress |