Localisation updates from https://translatewiki.net. #278
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [16, 18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: installing dependencies | |
run: npm ci | |
- name: Installing ESLint | |
run: npm i -g eslint | |
- name: Run ESLint | |
run: eslint . --ext .ts | |
- name: building | |
run: npm run build | |
- name: installing devtools | |
run: .github/scripts/install-zimtools.sh | |
- name: testing | |
run: ZIMCHECK_PATH=`find .. -name zimcheck` npm run test |