workaround for issue #1148 French missing on results for checkbox wit… #1439
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 |