Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Latest commit

 

History

History
40 lines (30 loc) · 891 Bytes

README.md

File metadata and controls

40 lines (30 loc) · 891 Bytes

Lingui action

  1. run cli command for extract locales
  2. if there are any changes in these files suggest to resolve them and exit
  3. result is stable localization files in master branch 🚀

Usage

You have to use yarn and have script extract in project package.json.

{
  "scripts": {
    "extract": "lingui extract",
    "compile": "lingui compile"
  } 
}

Example workflow

- uses: actions/setup-node@v3
- uses: actions/checkout@v3
  
# this step will be different for every project
- name: 'Install dependencies'
- run: |
    corepack enable
    yarn set version 3.2.0
    yarn install --silent
  
- uses: trisbee/lingui-action@v1

Links