Merge pull request #1151 from canada-ca/fourth-dadm-review-2025 #1437
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: CI build | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: npm | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run test:unit | |
- run: | | |
echo "::add-matcher::.github/workflows/cspell-problem-matcher.json" | |
npm run spellcheck:code | |
- run: | | |
echo "::add-matcher::.github/workflows/cspell-problem-matcher.json" | |
npm run spellcheck:questions |