Modify Tunisian Arabic language data #1039
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: Node.js build | |
on: | |
[pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-v: [16.x, 18.x, 20.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-v }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-v }} | |
- name: Install package.json dependencies | |
run: npm install | |
- name: Run Node.js test suite | |
run: npm test | |
- name: Run linting | |
run: npm run lint |