Skip to content

GitHub Action for StringsLint

Actions

About

Ensure your localized strings are complete and never unused
1.1.10
Latest
Star (2)

GitHub Action for StringsLint

This Action executes StringsLint and generates annotations from the violations found.

Usage

An example workflow (.github/workflows/stringslint.yml) to executing StringsLint follows:

name: StringsLint

on:
  pull_request:
    paths:
      - ".github/workflows/stringslint.yml"
      - ".stringslint.yml"
      - "**/*.swift"
      - "**/*.strings"
      - "**/*.stringsdict"

jobs:
  StringsLint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: GitHub Action for StringsLint
        uses: dral3x/action-stringslint@1.1.11

      - name: GitHub Action for StringsLint with --config
        uses: dral3x/action-stringslint@1.1.11
        with:
          args: --config ../shared/stringslint.yml

      - name: GitHub Action for StringsLint (Different working directory)
        uses: dral3x/action-stringslint@1.1.11
        env:
          WORKING_DIRECTORY: Source

Author

Alessandro Calzavara

License

MIT licensed

GitHub Action for StringsLint is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Ensure your localized strings are complete and never unused
1.1.10
Latest

GitHub Action for StringsLint is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.