chore(deps): bump react-i18next from 15.4.1 to 16.5.0 #680
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: Lint Code | |
| on: | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - reopened | |
| - unlocked | |
| paths: | |
| - "src/extension/**" | |
| - "src/view/**" | |
| - "**/*.json" | |
| - "**/*.yml" | |
| - "**/*.yaml" | |
| - "**/*.md" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "src/extension/**" | |
| - "src/view/**" | |
| - "**/*.json" | |
| - "**/*.yml" | |
| - "**/*.yaml" | |
| - "**/*.md" | |
| workflow_dispatch: | |
| jobs: | |
| lint-extension: | |
| name: Lint Extension Code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Setup Node 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.18.0" | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - uses: extractions/setup-just@v3 | |
| - name: Cache turbo | |
| uses: actions/cache@v5 | |
| with: | |
| path: .turbo | |
| key: turbo-lint-ext-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.sha }} | |
| restore-keys: | | |
| turbo-lint-ext-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}- | |
| turbo-lint-ext-${{ runner.os }}- | |
| - name: Install dependencies | |
| run: | | |
| just deps-root | |
| just deps-extension | |
| - name: Lint Extension | |
| run: just lint extension | |
| lint-view: | |
| name: Lint View Code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Setup Node 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.18.0" | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - uses: extractions/setup-just@v3 | |
| - name: Cache turbo | |
| uses: actions/cache@v5 | |
| with: | |
| path: .turbo | |
| key: turbo-lint-view-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.sha }} | |
| restore-keys: | | |
| turbo-lint-view-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}- | |
| turbo-lint-view-${{ runner.os }}- | |
| - name: Install dependencies | |
| run: | | |
| just deps-root | |
| just deps-view | |
| - name: Lint View | |
| run: just lint view | |
| lint-config: | |
| name: Lint Config Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Setup Node 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22.18.0" | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - uses: extractions/setup-just@v3 | |
| - name: Install dependencies | |
| run: just deps-root | |
| - name: Lint Config Files | |
| run: just lint config |