feat: add Serbian (Latin) translations (#4448) #6762
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: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: read-all | |
| jobs: | |
| build: | |
| name: Perform tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x] | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Setup Node | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - name: Install & Test | |
| run: | | |
| npm ci | |
| npm run test | |
| - name: Run ESLint | |
| run: | | |
| npm run lint | |
| - name: Run bench tests | |
| run: | | |
| npm run bench | |
| - name: Run Prettier | |
| run: | | |
| npm run format:check | |
| - name: Code Coverage | |
| uses: codecov/codecov-action@4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0 # v3.1.5 |