Merge pull request #262 from andreriesco/release-2.6-hot-fixes #277
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: Sanity Check | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
spell-check: | |
runs-on: ubuntu-latest | |
container: | |
image: node:18 | |
name: Spell Check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: cspell CLI Lint | |
shell: bash | |
run: | | |
npm install git+https://github.com/streetsidesoftware/cspell-cli | |
npx cspell-cli lint --relative | |
check-eof-new-line: | |
runs-on: ubuntu-latest | |
name: Check EOF New Line | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check EOF New Line | |
shell: pwsh | |
run: | | |
./scripts/validNewLine.ps1 |