chore: add v23 resolution for i18next #5988
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: 'dhis2: test (node)' | |
| on: push | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install | |
| run: yarn install --frozen-lockfile | |
| - name: Lint | |
| run: | | |
| yarn d2-app-scripts i18n generate | |
| yarn d2-style check | |
| - name: Test | |
| run: yarn test | |
| env: | |
| CI: true |