feat(translation): Add Croatian translation #263
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: Run Tests on PR | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Prepare yarn | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Test imports | |
| run: yarn run dist-test | |
| - name: Run tests | |
| run: yarn run test | |
| - name: Lint | |
| run: yarn run lint-ci | |
| - name: Check formatting | |
| run: bash scripts/check-formatting-ci.sh | |
| - name: Build example app | |
| run: cd docs/demo && yarn run build |