Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			903 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			903 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Check i18n
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [main]
 | 
						|
  pull_request:
 | 
						|
    branches: [main]
 | 
						|
 | 
						|
env:
 | 
						|
  RAILS_ENV: test
 | 
						|
 | 
						|
jobs:
 | 
						|
  check-i18n:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v3
 | 
						|
      - name: Install system dependencies
 | 
						|
        run: |
 | 
						|
          sudo apt-get update
 | 
						|
          sudo apt-get install -y libicu-dev libidn11-dev
 | 
						|
      - name: Set up Ruby
 | 
						|
        uses: ruby/setup-ruby@v1
 | 
						|
        with:
 | 
						|
          ruby-version: '3.0'
 | 
						|
          bundler-cache: true
 | 
						|
      - name: Check locale file normalization
 | 
						|
        run: bundle exec i18n-tasks check-normalized
 | 
						|
      - name: Check for unused strings
 | 
						|
        run: bundle exec i18n-tasks unused -l en
 | 
						|
      - name: Check for wrong string interpolations
 | 
						|
        run: bundle exec i18n-tasks check-consistent-interpolations
 | 
						|
      - name: Check that all required locale files exist
 | 
						|
        run: bundle exec rake repo:check_locales_files
 |