build(deps-dev): bump react-i18next from 17.0.2 to 17.0.4 #1714
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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| js-test-and-linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| with: | |
| rust-components: rustfmt | |
| - run: npm install | |
| - run: deno fmt --check | |
| - run: deno lint | |
| - run: npm run type-check | |
| - run: npm run test | |
| rust-linter: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Format | |
| run: |- | |
| rustup component add rustfmt | |
| cargo fmt -- --check | |
| - name: Linter | |
| run: |- | |
| rustup component add clippy | |
| cargo clippy --locked --all-targets -- -D warnings | |
| rust-test: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| with: | |
| cache-key-prefix: rust-test | |
| - run: cargo test --locked --verbose |