Fixes: Hindi translation does not apply on the homepage (works for Bangla and others) #3747 and Some text on the p5.js Editor “About” page is not translated #3485 #5186
Workflow file for this run
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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Test and lint code base | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.20.x' | |
| - run: npm install | |
| - run: npm run test | |
| - run: npm run typecheck | |
| - run: npm run lint |