Switch to npm workspaces structure #300
Workflow file for this run
This file contains 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: Translations converter tool CI | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/translations-converter.yml | |
- android/translations-converter/** | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
check-translations: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
default: true | |
- name: Build and test translations converter tool | |
working-directory: android/translations-converter | |
run: cargo test |